@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Cinzel:wght@400;600;700&display=swap');

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}

section, div, article, aside, figure, figcaption, header, footer, main, nav {
    max-width: 100%;
    box-sizing: border-box;
}

.container, [class*="grid"], [class*="card"], [class*="service"], [class*="pricing"], [class*="contact"] {
    max-width: 100%;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0a;
    --bg-charcoal: #1a1a1a;
    --accent-gold: #d4af37;
    --accent-silver: #c0c0c0;
    --accent-white: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

@supports (padding: max(0px)) {
    body {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
    
    header {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
    
    .nav-links {
        padding-left: max(1.5rem, env(safe-area-inset-left));
        padding-right: max(1.5rem, env(safe-area-inset-right));
    }
    
    footer {
        padding-left: max(2rem, env(safe-area-inset-left));
        padding-right: max(2rem, env(safe-area-inset-right));
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
    }
}

body {
    font-family: 'Playfair Display', serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden !important;
    min-width: 320px;
    max-width: 100vw !important;
    font-size: 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-size-adjust: 100%;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded,
img:not([loading="lazy"]) {
    opacity: 1;
}

* {
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.2);
}

a, button, input, textarea, select {
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.3);
    touch-action: manipulation;
}

.btn, .card, .service-card, .pricing-card, .event-item, .control-button {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input, textarea, select, button {
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

p, li, span, div {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

table {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    display: block;
    box-sizing: border-box;
}

iframe, video, embed, object {
    max-width: 100%;
    box-sizing: border-box;
}

section > *, div > *, article > *, main > * {
    max-width: 100%;
}

header {
    background-color: rgba(10, 10, 10, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-decoration: none;
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    z-index: 999;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    transition: color 0.3s ease, transform 0.3s ease;
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.3);
}

.mobile-menu-toggle.active {
    color: var(--accent-gold);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

main {
    margin-top: 80px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    contain: layout;
}

section > * {
    max-width: 100%;
    box-sizing: border-box;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
    overflow-x: hidden;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 0;
    max-width: 100vw;
    width: 100%;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 26, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    width: 100%;
    padding: 2rem;
    position: relative;
    box-sizing: border-box;
}

.hero-content * {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.image-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin: 2rem 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.slider-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.slider-image.active {
    opacity: 1;
}

.film-strip-container {
    margin: 3rem 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2rem 0;
    position: relative;
    width: 100%;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
}

.film-strip-container::-webkit-scrollbar {
    height: 8px;
}

.film-strip-container::-webkit-scrollbar-track {
    background: var(--bg-charcoal);
    border-radius: 4px;
}

.film-strip-container::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

.film-strip-container::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.8);
}

.film-strip {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 60px 0;
    min-width: fit-content;
    position: relative;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), inset 0 0 50px rgba(212, 175, 55, 0.05), 0 0 30px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.film-strip::before,
.film-strip::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    background: repeating-linear-gradient(to right, #1a1a1a 0px, #1a1a1a 6px, #0a0a0a 6px, #0a0a0a 12px, #1a1a1a 12px, #1a1a1a 18px, #0a0a0a 18px, #0a0a0a 24px, #1a1a1a 24px, #1a1a1a 30px, #0a0a0a 30px, #0a0a0a 36px);
    z-index: 1;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

.film-strip::before {
    top: 0;
}

.film-strip::after {
    bottom: 0;
}

.film-perforations {
    width: 35px;
    height: 100%;
    background: repeating-linear-gradient(to bottom, #1a1a1a 0px, #1a1a1a 6px, #0a0a0a 6px, #0a0a0a 12px, #1a1a1a 12px, #1a1a1a 18px, #0a0a0a 18px, #0a0a0a 24px, #1a1a1a 24px, #1a1a1a 30px, #0a0a0a 30px, #0a0a0a 36px);
    position: relative;
    flex-shrink: 0;
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    border-right: 1px solid rgba(212, 175, 55, 0.3);
}

.film-perforations-left {
    border-right: 2px solid rgba(212, 175, 55, 0.4);
}

.film-perforations-right {
    border-left: 2px solid rgba(212, 175, 55, 0.4);
}

.film-perforations::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: radial-gradient(circle, #0a0a0a 0%, #000000 100%);
    border-radius: 50%;
    box-shadow: 0 -50px 0 0 #0a0a0a, 0 -100px 0 0 #0a0a0a, 0 -150px 0 0 #0a0a0a, 0 -200px 0 0 #0a0a0a, 0 50px 0 0 #0a0a0a, 0 100px 0 0 #0a0a0a, 0 150px 0 0 #0a0a0a, 0 200px 0 0 #0a0a0a, inset 0 0 5px rgba(0, 0, 0, 0.8);
}

.film-frames {
    display: flex;
    gap: 20px;
    padding: 0 25px;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.film-frame {
    width: 400px;
    max-width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #0a0a0a 0%, #050505 100%);
    padding: 10px;
    border: 3px solid rgba(212, 175, 55, 0.4);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.film-frame:hover {
    transform: scale(1.05);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3), inset 0 0 30px rgba(212, 175, 55, 0.2);
    z-index: 2;
}

.film-frame::before,
.film-frame::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 18px;
    background: repeating-linear-gradient(to right, #1a1a1a 0px, #1a1a1a 5px, #0a0a0a 5px, #0a0a0a 10px, #1a1a1a 10px, #1a1a1a 15px, #0a0a0a 15px, #0a0a0a 20px);
    z-index: 1;
    box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.5);
}

.film-frame::before {
    top: 0;
}

.film-frame::after {
    bottom: 0;
}

.film-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 0;
    filter: contrast(1.1) brightness(0.95);
    transition: filter 0.3s ease;
}

.film-frame:hover img {
    filter: contrast(1.2) brightness(1);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-gold);
    position: relative;
    padding-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: var(--accent-gold);
}

.section-title-left {
    font-size: 2.5rem;
    text-align: left;
    margin-bottom: 3rem;
    color: var(--accent-gold);
    position: relative;
    padding-bottom: 1rem;
    border-left: 4px solid var(--accent-gold);
    padding-left: 1.5rem;
}

.section-title-right {
    font-size: 2.5rem;
    text-align: right;
    margin-bottom: 3rem;
    color: var(--accent-gold);
    position: relative;
    padding-bottom: 1rem;
    border-right: 4px solid var(--accent-gold);
    padding-right: 1.5rem;
}

.section-title-minimal {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-silver);
    font-weight: 400;
    letter-spacing: 0.2em;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2rem;
    margin: 2rem 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 2rem 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.grid-asymmetric {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.grid-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    grid-auto-rows: 10px;
    gap: 1.5rem;
    margin: 2rem 0;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.card, .card-minimal, .card-bordered, .card-gradient, .card-feature {
    background-color: var(--bg-charcoal);
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
}

.card h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.card-minimal {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.card-minimal:hover {
    transform: translateX(10px);
    border-bottom-color: var(--accent-gold);
}

.card-bordered {
    background-color: transparent;
    border: 2px solid var(--accent-gold);
}

.card-bordered:hover {
    background-color: rgba(212, 175, 55, 0.05);
    transform: scale(1.02);
}

.card-gradient {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 26, 26, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.card-gradient:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(26, 26, 26, 0.95) 100%);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.card-image {
    background-size: cover;
    background-position: center;
    padding: 3rem 2rem;
    border: none;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
    z-index: 1;
}

.card-image h3, .card-image p {
    position: relative;
    z-index: 2;
}

.card-large {
    grid-column: span 2;
}

.card-tall {
    grid-row: span 2;
}

.card-feature {
    padding: 3rem;
    border-left: 4px solid var(--accent-gold);
}

.card-feature::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: rgba(212, 175, 55, 0.1);
    transition: width 0.3s ease;
}

.card-feature:hover::after {
    width: 100%;
}

.card-feature h3, .card-feature p {
    position: relative;
    z-index: 1;
}

.image-frame {
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 0.5rem;
    background-color: var(--bg-charcoal);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    margin: 1rem 0;
    transition: transform 0.3s ease;
}

.image-frame:hover {
    transform: scale(1.02);
    border-color: var(--accent-gold);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.image-frame-thin {
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 0.25rem;
    background-color: transparent;
    box-shadow: none;
}

.image-frame-thick {
    border: 4px solid var(--accent-gold);
    padding: 1rem;
    background-color: var(--bg-charcoal);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.image-frame-angled {
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 0.5rem;
    background-color: var(--bg-charcoal);
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

.image-frame-angled:hover {
    transform: rotate(0deg) scale(1.05);
}

.image-frame-no-border {
    border: none;
    padding: 0;
    background-color: transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.image-frame-no-border img {
    filter: grayscale(30%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.image-frame-no-border:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.portfolio-image-large {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.portfolio-image-medium {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.portfolio-image-tall {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
}

.portfolio-grid-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.portfolio-grid-large .image-frame,
.portfolio-grid-large .image-frame-thin,
.portfolio-grid-large .image-frame-thick,
.portfolio-grid-large .image-frame-no-border,
.portfolio-grid-large .image-frame-angled {
    height: 100%;
    overflow: hidden;
}

.portfolio-grid-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-single-large {
    width: 100%;
    max-width: 100%;
    margin: 2rem 0;
}

.portfolio-single-large .image-frame,
.portfolio-single-large .image-frame-thick {
    height: 700px;
    overflow: hidden;
    padding: 0;
}

.portfolio-single-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: 2rem;
    margin: 2rem 0;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.portfolio-masonry .image-frame,
.portfolio-masonry .image-frame-thin,
.portfolio-masonry .image-frame-thick,
.portfolio-masonry .image-frame-no-border {
    min-height: 500px;
    overflow: hidden;
}

.portfolio-masonry img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.portfolio-featured {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.portfolio-featured .featured-main {
    min-height: 700px;
}

.portfolio-featured .featured-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.portfolio-featured .featured-side-item {
    min-height: 330px;
    flex: 1;
}

.portfolio-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.polaroid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.polaroid {
    background-color: var(--accent-white);
    padding: 1rem 1rem 3rem 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
    margin: 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.polaroid:hover {
    transform: rotate(0deg) scale(1.05);
}

.polaroid img {
    width: 100%;
    height: auto;
    display: block;
}

.polaroid-large {
    background-color: var(--accent-white);
    padding: 1.5rem 1.5rem 0 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
    margin: 1.5rem;
    max-width: 100%;
}

.polaroid-large:hover {
    transform: rotate(0deg) scale(1.03);
}

.polaroid-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 500px;
}

.polaroid-large.with-content {
    padding-bottom: 0;
}

.polaroid-medium {
    background-color: var(--accent-white);
    padding: 1.2rem 1.2rem 3.5rem 1.2rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.55);
    transform: rotate(1deg);
    transition: transform 0.3s ease;
    margin: 1.2rem;
}

.polaroid-medium:hover {
    transform: rotate(0deg) scale(1.04);
}

.polaroid-medium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 400px;
}

.polaroid-small {
    background-color: var(--accent-white);
    padding: 0.8rem 0.8rem 2.5rem 0.8rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transform: rotate(-1.5deg);
    transition: transform 0.3s ease;
    margin: 1rem;
}

.polaroid-small:hover {
    transform: rotate(0deg) scale(1.05);
}

.polaroid-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 300px;
}

.polaroid-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 3rem;
    margin: 3rem 0;
    justify-items: center;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.polaroid-featured {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
    align-items: start;
}

.polaroid-featured .main-polaroid {
    justify-self: center;
}

.polaroid-featured .side-polaroids {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.polaroid-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: 3rem;
    margin: 3rem 0;
    justify-items: center;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.service-card {
    background-color: var(--bg-charcoal);
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    border-color: var(--accent-gold);
}

.service-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, 0.3) 100%);
    transition: opacity 0.3s ease;
}

.service-card:hover .service-image::after {
    opacity: 0.5;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
}

.service-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-content .btn {
    align-self: flex-start;
    margin-top: auto;
}

.event-photography-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
    align-items: start;
}

.event-image-display {
    position: sticky;
    top: 100px;
}

.event-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    background-color: var(--bg-charcoal);
    position: relative;
}

.event-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.2) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.event-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.event-image-wrapper:hover img {
    transform: scale(1.05);
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-item {
    background-color: var(--bg-charcoal);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.event-item:hover::before {
    left: 100%;
}

.event-item:hover,
.event-item.active {
    border-color: var(--accent-gold);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    background-color: rgba(212, 175, 55, 0.05);
}

.event-item.active {
    border-left: 4px solid var(--accent-gold);
}

.event-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.event-item h3 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-family: 'Cinzel', serif;
}

.event-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

.id-photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.id-photo-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, var(--bg-charcoal) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.id-photo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.id-photo-card:hover::before {
    transform: scaleX(1);
}

.id-photo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, var(--bg-charcoal) 100%);
}

.id-photo-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.id-photo-card h3 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
}

.id-photo-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.id-photo-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.feature-tag {
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.id-photo-card:hover .feature-tag {
    background-color: rgba(212, 175, 55, 0.3);
    border-color: var(--accent-gold);
}

.id-photo-showcase {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.id-photo-example {
    text-align: center;
}

.id-photo-frame {
    width: 250px;
    max-width: 100%;
    height: 320px;
    border: 4px solid var(--accent-gold);
    padding: 0.5rem;
    background-color: var(--bg-charcoal);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    margin: 0 auto 1rem;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.id-photo-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.id-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.id-photo-frame:hover img {
    transform: scale(1.05);
}

.id-photo-label {
    color: var(--accent-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Cinzel', serif;
}

.photobooth-container {
    max-width: 900px;
    margin: 3rem auto;
    text-align: center;
}

.photobooth-frame {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 8px solid var(--accent-gold);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), inset 0 0 30px rgba(212, 175, 55, 0.1);
    position: relative;
    margin-bottom: 3rem;
    overflow: hidden;
}

.photobooth-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.3) 0%, transparent 100%);
    z-index: 2;
}

.photobooth-curtains {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.curtain {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.8) 0%, rgba(184, 134, 11, 0.6) 100%);
    transition: transform 0.8s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.curtain.left {
    left: 0;
    transform-origin: left;
    border-right: 2px solid rgba(0, 0, 0, 0.3);
}

.curtain.right {
    right: 0;
    transform-origin: right;
    border-left: 2px solid rgba(0, 0, 0, 0.3);
}

.photobooth-frame:hover .curtain.left {
    transform: translateX(-100%);
}

.photobooth-frame:hover .curtain.right {
    transform: translateX(100%);
}

.photobooth-screen {
    width: 100%;
    height: 600px;
    background-color: var(--bg-dark);
    border: 4px solid rgba(212, 175, 55, 0.5);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin: 2rem 0;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8);
}

.photobooth-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.photobooth-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.photobooth-frame:hover .photobooth-screen img {
    transform: scale(1.05);
}

.photobooth-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.control-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 3px solid var(--accent-gold);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.control-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--accent-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

.control-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.control-button.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.5) 0%, rgba(212, 175, 55, 0.3) 100%);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.photoshoot-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.photoshoot-service-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, var(--bg-charcoal) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.photoshoot-service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, var(--bg-charcoal) 100%);
}

.photoshoot-service-card h3 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
}

.photoshoot-service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

.branding-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin: 3rem 0;
    align-items: start;
}

.branding-main-image {
    position: sticky;
    top: 100px;
}

.branding-frame {
    position: relative;
    border: 6px solid var(--accent-gold);
    background-color: var(--bg-charcoal);
    padding: 1rem;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
    overflow: hidden;
}

.branding-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.branding-frame img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 0;
}

.branding-frame:hover img {
    transform: scale(1.08);
}

.branding-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.branding-badge {
    background: linear-gradient(135deg, var(--accent-gold) 0%, rgba(212, 175, 55, 0.8) 100%);
    color: var(--bg-dark);
    padding: 0.5rem 1.5rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
    border: 2px solid rgba(10, 10, 10, 0.3);
}

.branding-services {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.branding-service-item {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, var(--bg-charcoal) 100%);
    border-left: 4px solid var(--accent-gold);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.branding-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1));
    transition: width 0.3s ease;
}

.branding-service-item:hover::before {
    width: 100%;
}

.branding-service-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-left-width: 6px;
}

.branding-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.branding-service-item h3 {
    color: var(--accent-gold);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
    position: relative;
    z-index: 1;
}

.branding-service-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.branding-features {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.branding-features span {
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.branding-service-item:hover .branding-features span {
    background-color: rgba(212, 175, 55, 0.25);
    border-color: var(--accent-gold);
}

.branding-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.branding-gallery-item {
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(212, 175, 55, 0.3);
    background-color: var(--bg-charcoal);
    transition: all 0.3s ease;
    height: 500px;
}

.branding-gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.branding-gallery-item:hover::after {
    opacity: 1;
}

.branding-gallery-item:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.branding-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.branding-gallery-item:hover img {
    transform: scale(1.1);
}

.story-hero {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 3rem 0;
    overflow: hidden;
    border-radius: 15px;
}

.story-hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.story-hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.4) 100%);
    z-index: 1;
}

.story-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
}

.story-quote {
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid var(--accent-gold);
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.quote-text {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--accent-gold);
    line-height: 1.6;
    font-family: 'Playfair Display', serif;
    margin: 0;
    position: relative;
}

.quote-text::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -30px;
    color: rgba(212, 175, 55, 0.3);
    font-family: 'Playfair Display', serif;
}

.quote-text::after {
    content: '"';
    font-size: 4rem;
    position: absolute;
    bottom: -60px;
    right: -30px;
    color: rgba(212, 175, 55, 0.3);
    font-family: 'Playfair Display', serif;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 4rem 0;
}

.story-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, var(--bg-charcoal) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    transition: transform 0.5s ease;
    transform: scale(0);
}

.story-card:hover::before {
    transform: scale(1);
}

.story-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.story-card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
    position: relative;
    z-index: 1;
}

.story-card h3 {
    color: var(--accent-gold);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-family: 'Cinzel', serif;
    position: relative;
    z-index: 1;
}

.story-card p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, var(--bg-charcoal) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, var(--bg-charcoal) 100%);
}

.pricing-card h3 {
    color: var(--accent-gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
}

.pricing-amount {
    font-size: 2.5rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pricing-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
    padding: 0;
}

.pricing-features li {
    color: var(--text-secondary);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.map-container {
    margin: 3rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.map-container iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
    border: 0;
    box-sizing: border-box;
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(1.2);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 3rem 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.contact-info-grid > * {
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.contact-info-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, var(--bg-charcoal) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-info-card * {
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, var(--bg-charcoal) 100%);
}

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
}

.contact-info-card h3 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.contact-info-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.contact-highlight {
    color: var(--accent-gold) !important;
    font-size: 1.1rem;
    font-weight: 600;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.form-submit {
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 3rem 0;
    align-items: start;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.contact-layout > * {
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.contact-form-section {
    position: sticky;
    top: 100px;
}

.contact-form {
    max-width: 100%;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.contact-map-section {
    display: flex;
    flex-direction: column;
}

.contact-map-section .map-container {
    margin: 0;
    height: 600px;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.contact-form-title, .contact-map-title {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Cinzel', serif;
}

form {
    max-width: 600px;
    width: 100%;
    margin: 2rem auto;
    background-color: var(--bg-charcoal);
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-sizing: border-box;
}

.contact-form {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, var(--bg-charcoal) 100%);
    padding: 3rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
    font-family: 'Cinzel', serif;
}

form input, form textarea {
    width: 100%;
    max-width: 100%;
    padding: 0.75rem;
    background-color: var(--bg-dark);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    min-height: 44px;
}

@supports (-webkit-touch-callout: none) {
    form input, form textarea, form select {
        font-size: 16px;
    }
}

form input:focus, form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

form textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
    width: 100%;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    min-width: 18px;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex: 1;
}

footer {
    background-color: var(--bg-charcoal);
    padding: 3rem 2rem 1rem;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 1rem;
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--bg-charcoal);
    border: 2px solid var(--accent-gold);
    padding: 1.5rem;
    max-width: 400px;
    z-index: 10000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    display: none;
    backdrop-filter: blur(10px);
}

@media (max-width: 600px) {
    .privacy-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: calc(100vw - 20px);
        padding: 1rem;
    }
    
    .privacy-popup p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .privacy-popup .btn {
        display: block;
        width: 100%;
        margin: 0.25rem 0;
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }
}

.privacy-popup.visible {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.privacy-popup p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.privacy-popup .btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.loading-circle {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.spotlight {
    position: relative;
    overflow: hidden;
}

.spotlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: spotlight 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes spotlight {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(20%, 20%); }
    50% { transform: translate(-20%, 20%); }
    75% { transform: translate(20%, -20%); }
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 3rem 0;
}

.content-split-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 3rem 0;
}

.content-split-reverse > *:first-child {
    order: 2;
}

.content-split-reverse > *:last-child {
    order: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    border-top: 2px solid var(--accent-gold);
}

.stat-number {
    font-size: 3rem;
    font-family: 'Cinzel', serif;
    color: var(--accent-gold);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.timeline {
    position: relative;
    padding: 2rem 0;
    margin: 3rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: rgba(212, 175, 55, 0.3);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 45%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    left: 55%;
    text-align: left;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    top: 0;
    border: 4px solid var(--bg-dark);
}

.timeline-item:nth-child(odd)::before {
    right: -11px;
}

.timeline-item:nth-child(even)::before {
    left: -11px;
}

.quote-block {
    border-left: 4px solid var(--accent-gold);
    padding-left: 2rem;
    margin: 3rem 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-secondary);
    position: relative;
}

.quote-block::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-gold);
    position: absolute;
    left: -1rem;
    top: -1rem;
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
}

.quote-author {
    margin-top: 1rem;
    color: var(--accent-gold);
    font-style: normal;
    font-size: 1rem;
}

.services-grid > *, .pricing-grid > *, .contact-info-grid > *, .grid > *, .grid-2 > *, .grid-3 > * {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.event-photography-container, .branding-showcase, .contact-layout, .content-split, .content-split-reverse, .stats-grid, .timeline {
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .grid-3, .id-photos-grid, .photoshoot-services {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-split, .content-split-reverse {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    
    html, body, main, section {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .grid, .grid-2, .grid-3, .services-grid, .pricing-grid, .contact-info-grid {
        overflow: hidden !important;
    }
    
    .grid > *, .grid-2 > *, .grid-3 > *, .services-grid > *, .pricing-grid > *, .contact-info-grid > * {
        max-width: 100% !important;
        min-width: 0 !important;
        overflow: hidden;
    }

section {
        padding: 3rem 1rem;
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }

header {
        padding: 0.75rem 0;
    }
    
    nav {
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1.3rem;
        max-width: 65%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        max-width: 100vw;
        background-color: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        padding: 1.5rem;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        z-index: 999;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        backdrop-filter: blur(10px);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    
    .nav-links a {
        padding: 1rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        width: 100%;
        display: block;
        min-height: 44px;
        display: flex;
        align-items: center;
        font-size: 1.1rem;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .nav-links a:active {
        background-color: rgba(212, 175, 55, 0.1);
    }

main {
        margin-top: 60px;
    }
    
    body {
        font-size: 15px;
    }

.hero {
        background-attachment: scroll;
        min-height: 85vh;
        overflow: hidden;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .hero .btn {
        font-size: 1rem;
        padding: 1rem 2.25rem;
    }
    
    .section-title, .section-title-left, .section-title-right, .section-title-minimal {
        font-size: 1.75rem;
    }

.grid, .grid-2, .grid-3, .grid-asymmetric {
        grid-template-columns: 1fr !important;
    }
    
    .services-grid, .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        overflow: hidden;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        overflow: hidden;
    }
    
    .contact-info-card {
        max-width: 100%;
        width: 100%;
        min-width: 0;
        overflow: hidden;
    }
    
    .contact-info-card > * {
        max-width: 100%;
    }
    
    .id-photos-grid, .photoshoot-services, .story-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        overflow: hidden;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-split, .content-split-reverse {
        grid-template-columns: 1fr;
    }
    
    .event-photography-container, .branding-showcase, .contact-layout {
        grid-template-columns: 1fr;
    }

.event-image-display, .branding-main-image, .contact-form-section {
        position: relative;
        top: 0;
    }

.event-image-wrapper, .photobooth-screen, .branding-frame img {
        height: 400px;
    }
    
    .image-slider {
        height: 400px;
    }
    
    .film-frame {
        width: 300px;
        height: 225px;
    }

.portfolio-grid-large, .portfolio-masonry, .portfolio-featured {
        grid-template-columns: 1fr;
    }
    
    .polaroid-grid, .polaroid-masonry, .polaroid-featured {
        grid-template-columns: 1fr;
    }
    
    .branding-gallery {
        grid-template-columns: 1fr;
    }

.timeline::before {
        left: 12px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 3rem !important;
        padding-right: 0 !important;
    }
    
    .timeline-item::before {
        left: 2px !important;
    }

.card h3, .service-content h3, .event-item h3, .id-photo-card h3, .pricing-card h3, .contact-info-card h3, .story-card h3 {
        font-size: 1.25rem;
    }
    
    .card p, .service-content p, .event-item p, .id-photo-card p, .pricing-card p, .contact-info-card p, .story-card p {
        font-size: 0.9rem;
    }

.contact-form-title, .contact-map-title {
        font-size: 1.5rem;
    }
    
    .contact-highlight {
        font-size: 1rem;
    }
    
    .form-submit .btn {
        width: auto;
        min-width: 200px;
    }

form input, form textarea {
        font-size: 0.95rem;
    }

.footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .privacy-popup {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: calc(100% - 2rem);
    }
}

@media (min-width: 376px) and (max-width: 480px) {
    
    .hero {
        min-height: 82vh;
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 1.5rem 1.25rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }
    
    .hero p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .hero .btn {
        font-size: 0.95rem;
        padding: 0.85rem 2rem;
    }

.contact-info-grid {
        gap: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.75rem 1.25rem;
    }
    
    .contact-info-card h3 {
        font-size: 1.2rem;
    }
    
    .contact-info-card p {
        font-size: 0.95rem;
    }
    
    .contact-icon {
        font-size: 2.6rem;
    }
    
    .contact-highlight {
        font-size: 1rem;
        word-break: break-word;
    }
    
    .contact-form {
        padding: 1.75rem 1rem;
    }
    
    .contact-map-section .map-container {
        height: 300px;
    }
    
    .contact-form-title, .contact-map-title {
        font-size: 1.5rem;
    }
    
    form input, form textarea {
        font-size: 16px;
        padding: 0.75rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        overflow: hidden;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 100%;
        overflow: hidden;
    }
    
    .contact-info-card {
        max-width: 100%;
        width: 100%;
        min-width: 0;
        overflow: hidden;
    }
    
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        overflow: hidden;
    }
    
    .service-image, .event-image-wrapper {
        height: 300px;
        max-width: 100%;
    }
    
    .contact-map-section .map-container {
        height: 400px;
        max-width: 100%;
    }
    
    .film-frame {
        width: 280px;
        height: 210px;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    html, body, main, section {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100vw !important;
    }
    
    * {
        box-sizing: border-box !important;
    }

html {
        scroll-padding-top: 70px;
    }

a:not(.btn), button:not(.btn) {
        min-height: 44px;
        min-width: 44px;
    }

.contact-info-grid,
    .contact-info-card,
    .contact-layout,
    .contact-form-section,
    .contact-map-section,
    .contact-form,
    .map-container {
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    .contact-info-card * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .contact-highlight {
        word-break: break-word;
        hyphens: auto;
    }

header {
        padding: 0.5rem 0;
        width: 100%;
        max-width: 100vw;
    }
    
    nav {
        padding: 0 0.75rem;
        max-width: 100%;
    }
    
    .logo {
        font-size: 1.1rem;
        max-width: 60%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .mobile-menu-toggle {
        font-size: 1.3rem;
    }
    
    .nav-links {
        top: 60px;
        padding: 1rem;
        max-height: calc(100vh - 60px);
    }
    
    .nav-links a {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

main {
        margin-top: 55px;
    }
    
    body {
        font-size: 14px;
    }
    
    section {
        padding: 2.5rem 0.75rem !important;
        width: 100% !important;
        max-width: 100vw !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

.hero {
        min-height: 85vh;
        padding: 0;
        max-width: 100vw !important;
        width: 100vw !important;
        overflow: hidden !important;
    }
    
    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        line-height: 1.25;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }
    
    .hero p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .section-title, .section-title-left, .section-title-right, .section-title-minimal {
        font-size: 1.4rem;
    }

.btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.8rem;
    }
    
    .form-submit .btn {
        width: 100%;
    }

.card, .card-minimal, .card-bordered, .card-gradient, .card-feature {
        padding: 1.5rem 1rem;
    }
    
    .service-card, .pricing-card, .contact-info-card, .story-card {
        padding: 1.5rem 1rem;
    }

.contact-info-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        margin: 2rem 0;
        padding: 0;
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden;
    }
    
    .contact-info-card {
        padding: 1.75rem 1rem !important;
        margin: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden;
    }
    
    .contact-info-card h3 {
        font-size: 1.2rem;
        padding: 0;
    }
    
    .contact-info-card p {
        font-size: 0.95rem;
        padding: 0;
        margin: 0;
    }
    
    .contact-icon {
        font-size: 2.5rem;
    }
    
    .contact-highlight {
        font-size: 1.05rem;
        word-break: break-all;
        max-width: 100%;
        font-weight: 600;
    }
    
    .contact-map-section .map-container {
        height: 250px;
    }

.service-image, .event-image-wrapper, .photobooth-screen {
        height: 250px;
    }
    
    .image-slider {
        height: 300px;
    }
    
    .film-frame {
        width: 250px;
        height: 188px;
    }
    
    .id-photo-frame {
        width: 130px;
        height: 175px;
    }
    
    .story-hero {
        height: 250px;
    }

.stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }

.pricing-amount {
        font-size: 1.6rem;
    }

.quote-text {
        font-size: 1.2rem;
    }
    
    .polaroid-large img {
        min-height: 350px;
    }
    
    .polaroid-medium img {
        min-height: 280px;
    }
    
    .polaroid-small img {
        min-height: 220px;
    }
}

@media (min-width: 321px) and (max-width: 375px) {
    .logo {
        font-size: 1.15rem;
        max-width: 60%;
    }
    
    body {
        font-size: 14px;
    }
    
    section {
        padding: 2.25rem 1rem;
    }

.hero {
        min-height: 80vh;
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 1.25rem 1rem;
    }
    
    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1.1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.4rem;
    }
    
    .hero .btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.75rem;
    }
    
    .section-title, .section-title-left, .section-title-right, .section-title-minimal {
        font-size: 1.45rem;
    }
    
    .film-frame {
        width: 230px;
        height: 173px;
    }

.contact-info-grid {
        gap: 1.25rem;
        padding: 0;
    }
    
    .contact-info-card {
        padding: 1.65rem 1rem;
        overflow: hidden;
    }
    
    .contact-info-card h3 {
        font-size: 1.15rem;
        word-wrap: break-word;
    }
    
    .contact-info-card p {
        font-size: 0.9rem;
        word-wrap: break-word;
    }
    
    .contact-icon {
        font-size: 2.4rem;
    }
    
    .contact-highlight {
        font-size: 0.95rem;
        word-break: break-word;
        overflow-wrap: anywhere;
    }
    
    .contact-form {
        padding: 1.5rem 0.85rem;
    }
    
    .contact-map-section .map-container {
        height: 280px;
    }
    
    .contact-form-title, .contact-map-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 320px) {
    html, body, main, section {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100vw !important;
    }
    
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

body > * {
        max-width: 100vw !important;
    }

header {
        padding: 0.6rem 0;
        width: 100%;
        max-width: 100vw;
    }
    
    nav {
        padding: 0 0.5rem;
        max-width: 100%;
        overflow: hidden;
    }
    
    .logo {
        font-size: 1.1rem;
        max-width: 55%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        letter-spacing: 0.05em;
    }
    
    .mobile-menu-toggle {
        font-size: 1.3rem;
        padding: 0.25rem;
    }
    
    .nav-links {
        top: 58px;
        padding: 1rem 0.5rem;
        max-height: calc(100vh - 58px);
        width: 100vw;
        max-width: 100vw;
    }
    
    .nav-links a {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }

main {
        margin-top: 55px;
        width: 100%;
        padding: 0;
    }
    
    body {
        font-size: 14px;
        padding: 0;
        margin: 0;
    }
    
    section {
        padding: 2rem 0.5rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }

.hero {
        min-height: 75vh !important;
        max-width: 100vw !important;
        width: 100vw !important;
        overflow: hidden !important;
        padding: 0 !important;
        background-attachment: scroll !important;
    }
    
    .hero::before {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.88) 0%, rgba(26, 26, 26, 0.88) 100%);
    }
    
    .hero-content {
        padding: 1rem 0.75rem !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .hero h1 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .hero p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.25rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .hero .btn {
        font-size: 0.85rem !important;
        padding: 0.75rem 1.5rem !important;
        min-width: 150px;
        max-width: 100%;
    }

.section-title, .section-title-left, .section-title-right, .section-title-minimal {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
    
    .section-title::after {
        width: 70px;
    }

.btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .form-submit .btn {
        width: 100%;
    }

.grid, .grid-2, .grid-3, .services-grid, .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .grid > *, .grid-2 > *, .grid-3 > * {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
    }

.contact-info-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        margin: 1.5rem 0;
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    
    .contact-info-card {
        padding: 1.5rem 0.85rem !important;
        margin: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        min-width: 0 !important;
        overflow: hidden !important;
        border-radius: 6px;
        box-sizing: border-box !important;
    }
    
    .contact-info-card * {
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }
    
    .contact-info-card h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.7rem !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        padding: 0 !important;
        line-height: 1.3;
    }
    
    .contact-info-card p {
        font-size: 0.875rem !important;
        line-height: 1.6 !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .contact-info-card p br {
        display: block;
        content: "";
        margin: 0.15rem 0;
    }
    
    .contact-icon {
        font-size: 2.3rem !important;
        margin-bottom: 0.85rem !important;
        display: block;
    }
    
    .contact-highlight {
        font-size: 0.9rem !important;
        word-break: break-word !important;
        overflow-wrap: anywhere !important;
        hyphens: auto !important;
        max-width: 100% !important;
        font-weight: 600 !important;
        padding: 0 !important;
        margin: 0 !important;
        display: block;
        line-height: 1.5;
    }

.contact-layout {
        padding: 0 !important;
        margin: 1.5rem 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 2rem !important;
        overflow: hidden !important;
    }
    
    .contact-form-section, .contact-map-section {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    
    .contact-form {
        padding: 1.25rem 0.65rem !important;
        margin: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        border-radius: 8px;
    }
    
    .contact-form * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .contact-map-section .map-container {
        height: 250px !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    
    .contact-map-section .map-container iframe {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        border: 0 !important;
    }
    
    .contact-form-title, .contact-map-title {
        font-size: 1.3rem !important;
        margin-bottom: 1.15rem !important;
        padding: 0 !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        line-height: 1.3;
    }

form {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    
    .form-group {
        margin-bottom: 1.15rem !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    
    form input, form textarea, form button {
        font-size: 16px !important; 
        padding: 0.7rem 0.6rem !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        border-width: 1px !important;
    }
    
    form textarea {
        min-height: 120px !important;
        resize: vertical;
    }
    
    form label {
        font-size: 0.9rem !important;
        padding: 0 !important;
        margin-bottom: 0.5rem !important;
        display: block;
        max-width: 100% !important;
        word-wrap: break-word;
    }
    
    .checkbox-group {
        gap: 0.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-bottom: 1rem !important;
        display: flex !important;
        align-items: flex-start !important;
        box-sizing: border-box !important;
    }
    
    .checkbox-group input[type="checkbox"] {
        min-width: 18px !important;
        width: 18px !important;
        height: 18px !important;
        margin: 0 !important;
        margin-top: 0.2rem !important;
        flex-shrink: 0 !important;
    }
    
    .checkbox-group label {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        padding: 0 !important;
        margin: 0 !important;
        flex: 1 !important;
        max-width: calc(100% - 26px) !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .form-submit {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center;
        padding: 0 !important;
        margin-top: 1rem !important;
    }
    
    .form-submit .btn {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.85rem 1.5rem !important;
        font-size: 0.9rem !important;
    }

.card, .card-minimal, .card-bordered, .card-gradient, .card-feature {
        padding: 1.25rem 0.75rem !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .service-card, .pricing-card, .id-photo-card, .story-card {
        padding: 1.5rem 0.75rem !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .service-content {
        padding: 1.25rem 0.75rem !important;
    }
    
    .card h3, .service-content h3, .event-item h3, .id-photo-card h3, .pricing-card h3, .story-card h3 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
        padding: 0;
    }
    
    .card p, .service-content p, .event-item p, .id-photo-card p, .pricing-card p, .story-card p {
        font-size: 0.9rem;
        line-height: 1.6;
        padding: 0;
        margin-bottom: 1rem;
    }

.service-image, .event-image-wrapper, .photobooth-screen {
        height: 220px;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .image-slider {
        height: 250px;
        max-width: 100% !important;
        width: 100% !important;
        margin-left: 0;
        margin-right: 0;
    }
    
    .film-strip-container {
        margin: 1.5rem 0;
        padding: 0;
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(-0.5rem);
        margin-right: calc(-0.5rem);
    }
    
    .film-frame {
        width: 200px;
        height: 150px;
        min-width: 200px;
        max-width: 200px;
        flex-shrink: 0;
    }
    
    .id-photo-frame {
        width: 120px;
        height: 165px;
        max-width: 100%;
    }
    
    .story-hero {
        height: 280px;
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .branding-frame img {
        height: 320px;
        max-width: 100%;
        width: 100%;
    }
    
    .branding-gallery-item {
        height: 300px;
        max-width: 100%;
        width: 100%;
    }
    
    img, iframe, video {
        max-width: 100% !important;
        width: 100%;
    }

.stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }

.pricing-amount {
        font-size: 1.6rem;
    }
    
    .pricing-card {
        padding: 2rem 1.25rem;
    }
    
    .pricing-features {
        margin: 1.5rem 0;
    }
    
    .pricing-features li {
        font-size: 0.9rem;
        padding: 0.7rem 0;
    }

.timeline-item {
        padding-left: 3rem !important;
        margin-bottom: 2rem;
    }
    
    .timeline-item h3 {
        font-size: 1.1rem;
    }
    
    .timeline-item p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

.quote-text {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .quote-text::before, .quote-text::after {
        font-size: 2.8rem;
    }
    
    .quote-block {
        padding-left: 1.25rem;
        font-size: 1rem;
        margin: 2rem 0;
    }

.polaroid-large img {
        min-height: 300px;
    }
    
    .polaroid-medium img {
        min-height: 240px;
    }
    
    .polaroid-small img {
        min-height: 200px;
    }

.portfolio-single-large .image-frame, .portfolio-single-large .image-frame-thick {
        height: 320px;
    }
    
    .portfolio-masonry .image-frame, .portfolio-masonry .image-frame-thin, .portfolio-masonry .image-frame-thick, .portfolio-masonry .image-frame-no-border {
        min-height: 280px;
    }

.photobooth-container {
        max-width: 100%;
    }
    
    .photobooth-frame {
        padding: 1.5rem 1rem;
    }
    
    .photobooth-controls {
        gap: 0.75rem;
    }
    
    .control-button {
        width: 50px;
        height: 50px;
    }
    
    .control-button::before {
        width: 25px;
        height: 25px;
    }

.feature-tag, .branding-features span {
        font-size: 0.8rem;
        padding: 0.35rem 0.85rem;
    }
    
    .id-photo-icon, .branding-icon, .event-icon {
        font-size: 2.25rem;
    }

.branding-service-item, .event-item {
        padding: 1.75rem 1.25rem;
    }

.stats-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0;
        margin: 2rem 0;
    }
    
    .stat-item {
        padding: 1.25rem 0.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .stat-number {
        font-size: 1.9rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }

.timeline {
        width: 100%;
        max-width: 100%;
        margin: 2rem 0;
        padding: 1rem 0;
    }
    
    .timeline-item {
        padding-left: 2.5rem !important;
        padding-right: 0.5rem;
        width: 100%;
        max-width: 100%;
    }

.quote-block {
        padding-left: 1rem;
        padding-right: 0.5rem;
        margin: 1.5rem 0;
    }
    
    .event-item, .branding-service-item {
        padding: 1.5rem 0.75rem !important;
        width: 100%;
        max-width: 100%;
    }

footer {
        padding: 2rem 0.5rem 1rem !important;
        max-width: 100vw !important;
        width: 100vw !important;
        margin: 0;
    }
    
    .footer-content {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }
    
    .footer-links {
        gap: 0.75rem;
        padding: 0;
        max-width: 100%;
    }
    
    .footer-links a {
        font-size: 0.875rem;
        padding: 0.5rem;
    }
    
    .copyright {
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }
    
    .privacy-popup {
        padding: 1rem 0.75rem;
        left: 0.5rem;
        right: 0.5rem;
        bottom: 0.5rem;
        max-width: calc(100vw - 1rem) !important;
        width: calc(100vw - 1rem);
    }
    
    .privacy-popup p {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
        padding: 0;
    }
    
    .privacy-popup .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        margin: 0.25rem 0.25rem 0.25rem 0;
    }
}

@media (hover: none) and (pointer: coarse) {
    html, body, main, section {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    .hero {
        background-attachment: scroll;
    }

.btn:hover, .card:hover, .service-card:hover, .pricing-card:hover, .event-item:hover {
        transform: none;
    }
    
    .film-frame:hover, .polaroid:hover {
        transform: none;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 3rem 1rem;
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
    }
    
    .hero h1 {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .hero p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .hero .btn {
        font-size: 0.85rem;
        padding: 0.7rem 1.5rem;
    }
    
    header {
        padding: 0.5rem 0;
    }
    
    .nav-links {
        top: 55px;
        max-height: calc(100vh - 55px);
    }
}

@media (max-width: 900px) and (orientation: landscape) {
    section {
        padding: 3rem 1.5rem;
    }
    
    .hero {
        min-height: 70vh;
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero .btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.75rem;
    }
    
    .event-image-wrapper, .photobooth-screen, .branding-frame img {
        height: 350px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    section {
        opacity: 1;
        transform: none;
    }
}

