/* ===== CSS VARIABLES ===== */
:root {
    /* Light Theme Colors */
    --primary-color: #1f1f1f;
    --secondary-color: #4a4a4a;
    --accent-color: #c28f2c;
    --accent-hover: #a9781f;
    --black: #000000;
    --white: #ffffff;
    --gold: #e0b74f;
    --silver: #d9dde4;
    --bg-color: #ffffff;
    --surface-color: #f9fafc;
    --card-color: #ffffff;
    --text-primary: #151515;
    --text-secondary: #565c65;
    --text-light: #8a9099;
    --section-muted: #f2f4f8;
    
    /* Gradients */
    --gradient-primary: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
    --gradient-accent: linear-gradient(135deg, #cfa248 0%, #b58127 100%);
    --gradient-gold: linear-gradient(135deg, #f6d88a 0%, #e0b74f 100%);
    --gradient-silver: linear-gradient(135deg, #eef1f6 0%, #d9dde4 100%);
    --gradient-bg: linear-gradient(180deg, #ffffff 0%, #f2f4f8 100%);
    --gradient-hero: linear-gradient(160deg, rgba(10, 10, 10, 0.55) 0%, rgba(194, 143, 44, 0.25) 100%);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    
    /* Fluid Typography */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
    --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 1.875rem);
    --text-3xl: clamp(1.875rem, 1.6rem + 1.375vw, 2.25rem);
    --text-4xl: clamp(2.25rem, 1.9rem + 1.75vw, 3rem);
    --text-5xl: clamp(3rem, 2.5rem + 2.5vw, 4rem);
    --text-6xl: clamp(3.75rem, 3rem + 3.75vw, 5rem);
    
    /* Spacing */
    --section-padding: clamp(4rem, 5vw, 7rem) 0;
    --container-padding: clamp(1rem, 2vw, 2rem);
    --container-max-width: 1400px;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.6s ease;
    
    /* Shadows */
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 32px rgba(194, 143, 44, 0.3);
    
    /* Border Radius */
    --radius-small: 8px;
    --radius-medium: 16px;
    --radius-large: 24px;
    --radius-full: 50px;
    
    /* Breakpoints for JavaScript */
    --breakpoint-sm: 640px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1280px;
    --breakpoint-2xl: 1536px;
}

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

*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-secondary);
    background-color: var(--bg-color);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease, color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

/* Responsive image handling */
.responsive-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

/* Lazy loading styles */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Aspect ratio containers */
.aspect-ratio {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
}

.aspect-ratio--16-9 {
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.aspect-ratio--4-3 {
    padding-bottom: 75%; /* 4:3 aspect ratio */
}

.aspect-ratio--1-1 {
    padding-bottom: 100%; /* 1:1 aspect ratio */
}

.aspect-ratio img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

ul {
    list-style: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 4vw, 3.25rem);
    width: 100%;
}

.section__title {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    text-align: left;
    line-height: 1.2;
    position: relative;
    transition: color 0.3s ease;
}

.section__title--center {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: clamp(40px, 4vw, 60px);
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section__title--center::after {
    left: 50%;
    transform: translateX(-50%);
}

.section__subtitle {
    font-size: var(--text-lg);
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 4rem);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.6;
}

.section__header {
    margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 0 1rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::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: left 0.5s;
}

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

.btn--primary {
    background: var(--gradient-accent);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 12px 32px rgba(194, 143, 44, 0.35);
}

.btn--primary:hover {
    background: linear-gradient(135deg, #b58127 0%, #9d6c1d 100%);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(153, 112, 28, 0.35);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border-color: rgba(21, 21, 21, 0.12);
    position: relative;
}

.btn--secondary:hover {
    background: #ffffff;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.15);
}

.btn--outline {
    background: transparent;
    color: var(--accent-color);
    border-color: rgba(194, 143, 44, 0.4);
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
}

.btn--outline:hover {
    background: var(--accent-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(194, 143, 44, 0.35);
}

.btn--large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(21, 21, 21, 0.05);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-light);
    transform: translateY(0);
}

.nav__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(1rem, 2vw, 1.5rem) var(--container-padding);
    max-width: var(--container-max-width);
    margin: 0 auto;
    width: 100%;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 1vw, 1rem);
    z-index: 1001;
}

.nav__logo-img {
    height: clamp(40px, 6vw, 60px);
    width: auto;
    border-radius: 50%;
    box-shadow: var(--shadow-light);
}

.nav__brand {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2.5rem);
}

.nav__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-small);
    font-size: var(--text-sm);
    white-space: nowrap;
}

.nav__link:hover {
    color: var(--accent-color);
    background: rgba(194, 143, 44, 0.12);
}

.nav__link i {
    font-size: 1.1rem;
}

.nav__cta {
    background: var(--gradient-accent);
    color: #ffffff !important;
    padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1.5rem, 3vw, 2rem);
    border-radius: var(--radius-full);
    font-weight: 600;
    box-shadow: var(--shadow-medium);
    font-size: var(--text-sm);
}

.nav__cta:hover {
    background: var(--accent-hover);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.nav__cta::after {
    display: none;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 0.5rem;
    z-index: 1001;
}

.nav__toggle-line {
    width: 30px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height */
    min-height: 100svh; /* Small viewport height for mobile UI chrome */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 1;
    transform: none !important;
    translate: none !important;
    rotate: none !important;
    scale: none !important;
}

/* Override any external transforms on video */
#heroVideo {
    transform: none !important;
    translate: none !important;
    rotate: none !important;
    scale: none !important;
}

.hero__fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero__fallback img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 3;
}

.hero__content {
    text-align: center;
    color: #ffffff;
    z-index: 10;
    max-width: 900px;
    padding: 2rem;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    padding: 0.75rem 2rem;
    border-radius: 999px;
    border: 1px solid rgba(21, 21, 21, 0.08);
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.95rem;
    color: var(--primary-color);
}

.hero__badge i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 20px 45px rgba(10, 10, 10, 0.35);
    line-height: 1.1;
}

.hero__title-main {
    display: block;
    color: #ffffff;
    text-shadow: inherit;
}

.hero__title-sub {
    display: block;
    font-size: 1em;
    font-weight: 300;
    letter-spacing: 3px;
    margin-top: 0.5rem;
    color: #ce2a1e;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    text-shadow: 0 6px 20px rgba(10, 10, 10, 0.35);
}

.hero__buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn--primary {
    background: var(--gradient-accent);
    color: #ffffff;
    box-shadow: 0 12px 32px rgba(194, 143, 44, 0.35);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: 1px solid rgba(21, 21, 21, 0.12);
    backdrop-filter: blur(14px);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.btn--primary:hover {
    background: linear-gradient(135deg, #b58127 0%, #9d6c1d 100%);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(21, 21, 21, 0.18);
}


.hero__scroll {
    position: absolute;
    bottom: clamp(1rem, 3vw, 2rem);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    animation: bounce 2s infinite;
    z-index: 10;
    transition: all 0.3s ease;
}

.hero__scroll:hover {
    color: var(--accent-color);
    transform: translateX(-50%) scale(1.1);
}

.hero__scroll-text {
    font-size: var(--text-sm);
    margin-bottom: 0.5rem;
    opacity: 0.8;
    letter-spacing: 1px;
}

.hero__scroll-arrow {
    font-size: 1.5rem;
}

.hero__social {
    position: absolute;
    right: clamp(1rem, 2vw, 2rem);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 10;
}

.hero__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(40px, 5vw, 50px);
    height: clamp(40px, 5vw, 50px);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    color: var(--primary-color);
    border-radius: 50%;
    border: 1px solid rgba(21, 21, 21, 0.05);
    transition: var(--transition);
    font-size: 1.2rem;
}

.hero__social-link:hover {
    background: var(--accent-color);
    color: #ffffff;
    transform: translateX(-5px);
    box-shadow: 0 15px 35px rgba(194, 143, 44, 0.35);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding);
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23d9dde4" opacity="0.25"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.25;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 5vw, 6rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

.about__image {
    position: relative;
}

.about__image img {
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 500px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about__image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: rgba(207, 162, 72, 0.25);
    border-radius: var(--radius-large);
    z-index: 1;
    opacity: 1;
}

.about__image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: rgba(240, 214, 157, 0.35);
    border-radius: var(--radius-large);
    z-index: 1;
    opacity: 1;
}

.about__image img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: var(--shadow-heavy);
}

.about__text {
    padding: 1rem 0;
    max-width: 540px;
}

.about__description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    font-weight: 400;
    transition: color 0.3s ease;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.25rem);
    margin-top: 1.5rem;
}

.about__feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: var(--radius-medium);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(21, 21, 21, 0.05);
}

.about__feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(17, 24, 39, 0.12);
}

.about__feature i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-top: 0.5rem;
}

.about__feature h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.about__feature p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s ease;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: var(--section-padding);
    background: var(--section-muted);
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.gallery__masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-rows: 260px;
    gap: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: clamp(3rem, 6vw, 5rem);
    position: relative;
    z-index: 1;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
    transition: var(--transition);
    cursor: pointer;
}

.gallery__item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.gallery__item--large {
    grid-row: span 2;
}

.gallery__item--wide {
    grid-column: span 2;
}

.gallery__item--tall {
    grid-row: span 2;
}

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

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1.75rem;
    background: linear-gradient(180deg, rgba(6, 7, 10, 0.05) 40%, rgba(6, 7, 10, 0.45) 100%);
    opacity: 0;
    transition: var(--transition);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__content {
    text-align: left;
    color: #ffffff;
}

.gallery__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.gallery__description {
    font-size: 1rem;
    opacity: 0.85;
}

.gallery__info {
    margin-top: 4rem;
}

.gallery__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
    border-radius: var(--radius-large);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.stat__number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat__label {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
    color: var(--accent-color);
    transition: var(--transition);
    top: 50%;
    transform: translateY(-50%);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--accent-color);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: 700;
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-pagination {
    bottom: 0;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    opacity: 0.5;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
    transform: scale(1.2);
}

/* ===== VIDEO SECTION ===== */
.videos {
    padding: var(--section-padding);
    background: var(--gradient-primary);
    position: relative;
    transition: background 0.3s ease;
    overflow: hidden;
}

.video-swiper {
    padding: clamp(1rem, 2vw, 2rem) 0 clamp(2rem, 4vw, 4rem);
    overflow: hidden;
    position: relative;
}

.video-card {
    position: relative;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    transition: var(--transition);
    aspect-ratio: 16/9;
    background: #101828;
    width: 100%;
    height: auto;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.video-card__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.55) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.video-card:hover .video-card__overlay {
    opacity: 1;
}

.video-card__play {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 15px 35px rgba(194, 143, 44, 0.35);
}

.video-card__play:hover {
    background: var(--accent-hover);
    color: #ffffff;
    transform: scale(1.1);
}

.video-card__info {
    text-align: center;
    color: var(--primary-color);
    padding: 0 2rem;
}

.video-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.video-card__description {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.video-card__duration {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(16, 24, 40, 0.65);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== CRAFTSMANSHIP SECTION ===== */
.craftsmanship {
    padding: var(--section-padding);
    background: var(--surface-color);
    position: relative;
    transition: background 0.3s ease;
}

.craftsmanship__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 5vw, 5.5rem);
    align-items: center;
    margin-top: 2.5rem;
}

.craftsmanship__text h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.craftsmanship__text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.craftsmanship__highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: var(--radius-medium);
    border: 1px solid rgba(21, 21, 21, 0.06);
    transition: var(--transition);
}

.highlight:hover {
    transform: translateY(-3px);
    border-color: rgba(194, 143, 44, 0.4);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
}

.highlight i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.25rem;
}

.highlight h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.highlight p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s ease;
}

.craftsmanship__image {
    position: relative;
}

.craftsmanship__image img {
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
}

.craftsmanship__image:hover img {
    transform: scale(1.02);
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: var(--section-padding);
    background: var(--surface-color);
    position: relative;
    transition: background 0.3s ease;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(2rem, 4vw, 2.75rem);
    margin-top: 3.5rem;
}

.feature {
    text-align: center;
    padding: clamp(2.5rem, 4vw, 3rem) clamp(1.75rem, 3vw, 2.25rem);
    background: #ffffff;
    border-radius: var(--radius-large);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(21, 21, 21, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
}

.feature:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
    border-color: rgba(194, 143, 44, 0.4);
}

.feature:hover .feature__icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--accent-color);
}

.feature:hover .feature__title {
    color: var(--accent-color);
}

.feature__icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    display: block;
    color: var(--accent-color);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.feature__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.feature__description {
    color: var(--text-secondary);
    line-height: 1.65;
    font-weight: 400;
    transition: color 0.3s ease;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--section-padding);
    background: var(--gradient-primary);
    position: relative;
    transition: background 0.3s ease;
}

.contact .section__title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3.5rem, 6vw, 6rem);
    margin-top: 3.5rem;
    align-items: start;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact__address h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2rem);
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
    line-height: 1.3;
}

.contact__address p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 0;
    font-weight: 400;
    transition: color 0.3s ease;
}

.contact__map {
    margin-bottom: 0;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
    height: 320px;
}

.contact__social {
    display: flex;
    gap: 1.5rem;
}

/* Social group inside WhatsApp CTA */
.contact__social--cta {
    margin-top: 1.5rem;
    gap: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.form--whatsapp p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.form--whatsapp .btn {
    min-width: 240px;
    margin: 0 auto;
}

.form--whatsapp .social__link {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
}

.social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    color: #ffffff;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.5rem;
    box-shadow: var(--shadow-medium);
}

.social__link:hover {
    background: var(--accent-hover);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(194, 143, 44, 0.35);
}

/* ===== CONTACT FORM ===== */
.form {
    background: #ffffff;
    padding: clamp(2.25rem, 4vw, 3.25rem);
    border-radius: var(--radius-large);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(21, 21, 21, 0.06);
    transition: background 0.3s ease, border-color 0.3s ease;
    width: 100%;
}

.form--whatsapp {
    text-align: center;
    padding: clamp(2.5rem, 4vw, 3.5rem);
}

.form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
}

.form__group {
    position: relative;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.form__input {
    width: 100%;
    padding: clamp(1rem, 2vw, 1.5rem) 1rem;
    border: 1px solid rgba(21, 21, 21, 0.1);
    border-radius: var(--radius-small);
    font-size: var(--text-base);
    transition: var(--transition);
    background-color: #ffffff;
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 44px; /* iOS touch target minimum */
}

.form__input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(194, 143, 44, 0.18);
}

.form__textarea {
    min-height: clamp(120px, 20vw, 150px);
    resize: vertical;
    font-family: var(--font-body);
    padding-top: 1.5rem;
}

.form__label {
    position: absolute;
    top: clamp(1rem, 2vw, 1.5rem);
    left: 1rem;
    color: var(--text-light);
    transition: var(--transition);
    pointer-events: none;
    background-color: #ffffff;
    padding: 0 0.5rem;
    font-weight: 500;
    font-size: var(--text-sm);
}

.form__input:focus + .form__label,
.form__input:not(:placeholder-shown) + .form__label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: var(--text-xs);
    color: var(--accent-color);
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
    color: var(--text-primary);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23d9dde4" opacity="0.25"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grain)"/></svg>');
    opacity: 0.2;
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer__logo-img {
    height: 50px;
    width: auto;
    border-radius: 50%;
    box-shadow: var(--shadow-light);
}

.footer__links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer__link {
    color: var(--secondary-color);
    transition: var(--transition);
    font-weight: 500;
    position: relative;
}

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

.footer__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.footer__link:hover::after {
    width: 100%;
}

.footer__tagline {
    text-align: right;
    font-style: italic;
    color: var(--secondary-color);
    font-family: var(--font-accent);
    font-size: 1.1rem;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(21, 21, 21, 0.08);
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

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

/* Mobile responsive styles for hero section */
@media (max-width: 768px) {
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 24px rgba(194, 143, 44, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(194, 143, 44, 0.55);
    }
}


/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop */
@media screen and (min-width: 1400px) {
    .container {
        max-width: 1600px;
    }
    
    .hero__content {
        max-width: 1000px;
    }
}

/* Desktop */
@media screen and (max-width: 1200px) {
    .hero__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .hero__stat {
        padding: 1rem;
    }
    
    .hero__stat-number {
        font-size: var(--text-xl);
    }
}

/* Tablet */
@media screen and (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100svh;
        padding-top: clamp(70px, 12vh, 96px); /* account for fixed header */
    }
    
    .hero__content {
        height: auto;
        padding: 1.5rem;
    }
    
    .nav__menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-color);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-heavy);
        z-index: 999;
    }
    
    .nav__menu.active {
        left: 0;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .nav__toggle.active .nav__toggle-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav__toggle.active .nav__toggle-line:nth-child(2) {
        opacity: 0;
    }
    
    .nav__toggle.active .nav__toggle-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav__link {
        font-size: var(--text-lg);
        padding: 1rem 2rem;
        margin: 0.5rem 0;
    }
    
    .hero__stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
    }
    
    .hero__social {
        display: none;
    }
    
    .about__content {
        grid-template-columns: 1fr;
        gap: clamp(2.5rem, 4vw, 3.5rem);
    }
    
    .about__text {
        max-width: 100%;
        padding: 0;
    }
    
    .about__features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .craftsmanship__content {
        grid-template-columns: 1fr;
        gap: clamp(2.5rem, 4vw, 3.5rem);
    }
    
    .gallery__masonry {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-auto-rows: 200px;
        gap: 1.5rem;
    }
    
    .gallery__item--wide {
        grid-column: span 1;
    }
    
    .gallery__item--large {
        grid-row: span 1;
    }
    
    .contact__content {
        grid-template-columns: 1fr;
        gap: clamp(2.5rem, 5vw, 3.5rem);
    }
    
    .contact__info {
        gap: 2rem;
    }
    
    .contact__map {
        height: 280px;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer__links {
        justify-content: center;
    }
    
    .footer__tagline {
        text-align: center;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
    
    .video-swiper {
        padding: 1rem 0 2rem;
        margin: 0 -1rem;
        overflow: hidden;
    }
    
    .video-swiper .swiper-wrapper {
        padding: 0 1rem;
    }
    
    .video-card {
        margin: 0 0.5rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .video-swiper {
        margin: 0 -0.5rem;
    }
    
    .video-swiper .swiper-wrapper {
        padding: 0 0.5rem;
    }
    
    .video-card {
        margin: 0 0.25rem;
    }
    
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .form {
        padding: 2rem;
    }
}

/* Mobile Large */
@media screen and (max-width: 640px) {
    .hero__buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .features__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mobile */
@media screen and (max-width: 480px) {
    .nav__container {
        padding: 1rem;
    }
    
    .hero__content {
        padding: 1rem;
    }
    
    .hero__stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .hero__stat {
        padding: 0.75rem;
    }
    
    .hero__stat-number {
        font-size: var(--text-lg);
    }
    
    .hero__stat-label {
        font-size: var(--text-xs);
    }
    
    .gallery__masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        gap: 1rem;
    }
    
    .form {
        padding: 1.5rem;
    }
    
    .contact__social {
        justify-content: center;
    }
    
    .social__link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Mobile Small */
@media screen and (max-width: 360px) {
    .hero__title {
        font-size: var(--text-4xl);
    }
    
    .hero__subtitle {
        font-size: var(--text-base);
    }
    
    .section__title {
        font-size: var(--text-3xl);
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: var(--text-sm);
    }
    
    .btn--large {
        padding: 1rem 2rem;
        font-size: var(--text-base);
    }
}

/* ===== MOBILE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {
    /* Touch device optimizations */
    .btn {
        min-height: 44px; /* iOS touch target minimum */
        min-width: 44px;
    }
    
    .nav__link {
        min-height: 44px;
        padding: 1rem;
    }
    
    .gallery__item:hover {
        transform: none; /* Disable hover effects on touch */
    }
    
    .feature:hover {
        transform: none;
    }
    
    .video-card:hover {
        transform: none;
    }
    
    .hero__social-link:hover {
        transform: none;
    }
    
    .social__link:hover {
        transform: none;
    }
}

/* Touch interaction styles */
.touch-active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

.mobile-device .gallery__item,
.mobile-device .feature,
.mobile-device .video-card {
    transition: transform 0.2s ease;
}

.mobile-device .gallery__item:active,
.mobile-device .feature:active,
.mobile-device .video-card:active {
    transform: scale(0.98);
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .hero__video {
        animation: none;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav__link:focus,
.form__input:focus,
.social__link:focus,
.category__btn:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --secondary-color: #666666;
        --accent-color: #0000ff;
    }
}

/* ===== LIGHTBOX STYLES ===== */
.lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.lightbox__close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 3rem;
    cursor: pointer;
    z-index: 10001;
    transition: var(--transition);
}

.lightbox__close:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.lightbox__image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-heavy);
}

.lightbox__info {
    text-align: center;
    color: var(--text-primary);
    max-width: 600px;
}

.lightbox__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.lightbox__description {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Print styles */
@media print {
    .header,
    .nav__toggle,
    .hero__video-container,
    .contact__map,
    .footer,
    .swiper-button-next,
    .swiper-button-prev,
    .swiper-pagination {
        display: none;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    .hero__content {
        position: static;
        color: var(--primary-color);
    }
    
    .hero__title {
        color: var(--primary-color);
    }
}
