cjcold

/* ============================================ CJC PHOTOGRAPHY — Global Styles ============================================ */

@import url(‘https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Outfit:wght@300;400;500&display=swap’);

:root { –white: #ffffff; –off-white: #f9f8f6; –light-grey: #f0eeeb; –mid-grey: #d4d0ca; –text-dark: #1a1a1a; –text-mid: #5a5a5a; –text-light: #9a9a9a; –accent: #7b6fa0; –accent-light: #b8afd4; –border: #e8e5e0; –nav-height: 80px; }

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

html { scroll-behavior: smooth; }

body { font-family: ‘Outfit’, sans-serif; font-weight: 300; background: var(–white); color: var(–text-dark); line-height: 1.6; overflow-x: hidden; }

/* —- PAGE TRANSITIONS —- */ .page { display: none; opacity: 0; transition: opacity 0.4s ease; } .page.active { display: block; opacity: 1; }

/* —- NAV —- */ nav { position: fixed; top: 0; left: 0; right: 0; height: var(–nav-height); background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(–border); display: flex; align-items: center; justify-content: space-between; padding: 0 48px; z-index: 1000; }

.nav-logo { display: flex; align-items: center; gap: 12px; cursor: pointer; text-decoration: none; }

.nav-logo img { height: 48px; width: auto; filter: invert(1) brightness(0); }

.nav-links { display: flex; gap: 40px; list-style: none; }

.nav-links a { font-family: ‘Outfit’, sans-serif; font-weight: 400; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(–text-mid); text-decoration: none; transition: color 0.2s; cursor: pointer; }

.nav-links a:hover, .nav-links a.active { color: var(–text-dark); }

.nav-links a.active { border-bottom: 1px solid var(–text-dark); padding-bottom: 2px; }

.nav-cta { font-family: ‘Outfit’, sans-serif; font-size: 0.78rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; background: var(–text-dark); color: var(–white); border: none; padding: 10px 24px; cursor: pointer; transition: background 0.2s; text-decoration: none; }

.nav-cta:hover { background: var(–accent); }

/* Hamburger */ .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; } .hamburger span { display: block; width: 24px; height: 1.5px; background: var(–text-dark); transition: all 0.3s; }

/* —- MAIN CONTENT OFFSET —- */ main { padding-top: var(–nav-height); }

/* —- HERO —- */ .hero { min-height: calc(100vh - var(–nav-height)); display: grid; grid-template-columns: 1fr 1fr; align-items: center; }

.hero-text { padding: 80px 64px 80px 80px; }

.hero-eyebrow { font-family: ‘Outfit’, sans-serif; font-size: 0.72rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(–accent); margin-bottom: 20px; display: block; }

.hero-title { font-family: ‘Cormorant Garamond’, serif; font-size: clamp(3rem, 5vw, 5rem); font-weight: 300; line-height: 1.05; color: var(–text-dark); margin-bottom: 28px; }

.hero-title em { font-style: italic; color: var(–accent); }

.hero-bio { font-size: 0.95rem; color: var(–text-mid); line-height: 1.8; max-width: 420px; margin-bottom: 40px; }

.hero-actions { display: flex; gap: 16px; align-items: center; }

.btn-primary { font-family: ‘Outfit’, sans-serif; font-size: 0.78rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; background: var(–text-dark); color: var(–white); border: none; padding: 14px 32px; cursor: pointer; transition: background 0.2s; text-decoration: none; display: inline-block; }

.btn-primary:hover { background: var(–accent); }

.btn-secondary { font-family: ‘Outfit’, sans-serif; font-size: 0.78rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; background: transparent; color: var(–text-mid); border: 1px solid var(–border); padding: 14px 32px; cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block; }

.btn-secondary:hover { border-color: var(–text-dark); color: var(–text-dark); }

.hero-image { height: calc(100vh - var(–nav-height)); position: relative; overflow: hidden; background: var(–light-grey); }

.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: grayscale(15%); transition: transform 8s ease; }

.hero-image:hover img { transform: scale(1.04); }

.hero-image-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(–text-light); gap: 12px; font-size: 0.85rem; letter-spacing: 0.05em; }

.hero-image-placeholder svg { opacity: 0.3; }

/* —- STATS STRIP —- */ .stats-strip { border-top: 1px solid var(–border); border-bottom: 1px solid var(–border); display: grid; grid-template-columns: repeat(3, 1fr); background: var(–off-white); }

.stat-item { padding: 48px 40px; text-align: center; border-right: 1px solid var(–border); position: relative; }

.stat-item:last-child { border-right: none; }

.stat-number { font-family: ‘Cormorant Garamond’, serif; font-size: 3.2rem; font-weight: 300; color: var(–text-dark); line-height: 1; margin-bottom: 8px; }

.stat-label { font-size: 0.72rem; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; color: var(–text-light); }

/* —- SECTION STYLES —- */ .section { padding: 100px 80px; }

.section-alt { background: var(–off-white); }

.section-header { margin-bottom: 60px; }

.section-eyebrow { font-size: 0.72rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(–accent); display: block; margin-bottom: 12px; }

.section-title { font-family: ‘Cormorant Garamond’, serif; font-size: clamp(2.2rem, 3.5vw, 3.2rem); font-weight: 300; line-height: 1.1; color: var(–text-dark); }

.section-title em { font-style: italic; color: var(–accent); }

.section-desc { font-size: 0.92rem; color: var(–text-mid); line-height: 1.8; max-width: 560px; margin-top: 16px; }

/* —- GALLERY GRID —- */ .gallery-grid { columns: 3; column-gap: 12px; gap: 12px; }

.gallery-item { break-inside: avoid; margin-bottom: 12px; overflow: hidden; position: relative; cursor: pointer; }

.gallery-item img { width: 100%; display: block; transition: transform 0.6s ease, filter 0.4s ease; filter: grayscale(10%); }

.gallery-item:hover img { transform: scale(1.04); filter: grayscale(0%); }

/* —- FEATURED CLIENTS —- */ .clients-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(–border); }

.client-card { background: var(–white); cursor: pointer; overflow: hidden; position: relative; transition: all 0.3s ease; }

.client-card-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 360px; }

.client-thumbnail { position: relative; overflow: hidden; background: var(–light-grey); }

.client-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease, filter 0.4s ease; filter: grayscale(20%); }

.client-card:hover .client-thumbnail img { transform: scale(1.06); filter: grayscale(0%); }

.client-thumbnail-placeholder { width: 100%; height: 100%; min-height: 360px; display: flex; align-items: center; justify-content: center; color: var(–text-light); font-size: 0.78rem; letter-spacing: 0.1em; flex-direction: column; gap: 8px; }

.client-info { padding: 48px 40px; display: flex; flex-direction: column; justify-content: space-between; }

.client-tag { font-size: 0.68rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(–accent); margin-bottom: 12px; display: block; }

.client-name { font-family: ‘Cormorant Garamond’, serif; font-size: 1.8rem; font-weight: 300; line-height: 1.2; color: var(–text-dark); margin-bottom: 16px; }

.client-desc { font-size: 0.875rem; color: var(–text-mid); line-height: 1.75; flex: 1; margin-bottom: 24px; }

.client-stats { display: flex; gap: 24px; padding-top: 24px; border-top: 1px solid var(–border); }

.client-stat-num { font-family: ‘Cormorant Garamond’, serif; font-size: 1.6rem; font-weight: 300; color: var(–text-dark); display: block; line-height: 1; margin-bottom: 4px; }

.client-stat-lbl { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(–text-light); }

.view-more-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(–text-dark); text-decoration: none; margin-top: 16px; transition: gap 0.2s; cursor: pointer; background: none; border: none; }

.view-more-link:hover { gap: 14px; color: var(–accent); }

/* —- CLIENT DETAIL MODAL —- */ .modal-overlay { position: fixed; inset: 0; background: rgba(250, 249, 247, 0.97); z-index: 2000; display: none; overflow-y: auto; opacity: 0; transition: opacity 0.3s ease; }

.modal-overlay.open { display: block; opacity: 1; }

.modal-content { max-width: 1100px; margin: 0 auto; padding: 80px 48px; }

.modal-back { display: inline-flex; align-items: center; gap: 8px; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(–text-mid); cursor: pointer; background: none; border: none; margin-bottom: 60px; transition: color 0.2s; }

.modal-back:hover { color: var(–text-dark); }

.modal-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 80px; }

.modal-hero-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; overflow: hidden; }

.modal-hero-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(10%); }

.modal-hero-placeholder { width: 100%; aspect-ratio: 4/3; background: var(–light-grey); display: flex; align-items: center; justify-content: center; color: var(–text-light); font-size: 0.8rem; letter-spacing: 0.1em; }

.modal-meta { padding-top: 8px; }

.modal-tag { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(–accent); display: block; margin-bottom: 16px; }

.modal-title { font-family: ‘Cormorant Garamond’, serif; font-size: 2.8rem; font-weight: 300; line-height: 1.1; color: var(–text-dark); margin-bottom: 24px; }

.modal-desc { font-size: 0.92rem; color: var(–text-mid); line-height: 1.85; margin-bottom: 36px; }

.modal-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(–border); }

.modal-stat { padding: 24px; border-right: 1px solid var(–border); text-align: center; }

.modal-stat:last-child { border-right: none; }

.modal-stat-num { font-family: ‘Cormorant Garamond’, serif; font-size: 2rem; font-weight: 300; color: var(–text-dark); display: block; margin-bottom: 6px; }

.modal-stat-lbl { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(–text-light); }

.modal-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }

.modal-gallery-item { aspect-ratio: 3/2; overflow: hidden; background: var(–light-grey); cursor: pointer; }

.modal-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: grayscale(10%); }

.modal-gallery-item:hover img { transform: scale(1.05); filter: grayscale(0%); }

.modal-gallery-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(–text-light); font-size: 0.75rem; letter-spacing: 0.08em; }

/* —- ABOUT PAGE —- */ .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }

.about-portrait { aspect-ratio: 3/4; background: var(–light-grey); overflow: hidden; position: relative; }

.about-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: grayscale(10%); }

.about-portrait-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(–text-light); font-size: 0.8rem; letter-spacing: 0.1em; flex-direction: column; gap: 8px; }

.about-text .section-title { margin-bottom: 28px; }

.about-text p { font-size: 0.92rem; color: var(–text-mid); line-height: 1.85; margin-bottom: 20px; }

.about-text p:last-of-type { margin-bottom: 36px; }

.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; padding-top: 48px; border-top: 1px solid var(–border); }

.value-item {}

.value-num { font-family: ‘Cormorant Garamond’, serif; font-size: 1.4rem; font-weight: 300; color: var(–accent-light); display: block; margin-bottom: 6px; }

.value-title { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(–text-dark); margin-bottom: 6px; }

.value-desc { font-size: 0.82rem; color: var(–text-light); line-height: 1.6; }

/* —- CONTACT —- */ .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }

.contact-info {}

.contact-info p { font-size: 0.92rem; color: var(–text-mid); line-height: 1.85; margin-bottom: 40px; }

.contact-detail { display: flex; flex-direction: column; gap: 20px; }

.contact-item { display: flex; gap: 16px; align-items: flex-start; }

.contact-item-label { font-size: 0.68rem; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; color: var(–text-light); min-width: 80px; padding-top: 2px; }

.contact-item-value { font-size: 0.9rem; color: var(–text-dark); }

.contact-item-value a { color: var(–text-dark); text-decoration: none; transition: color 0.2s; }

.contact-item-value a:hover { color: var(–accent); }

/* Contact Form */ .contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label { font-size: 0.68rem; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; color: var(–text-light); }

.form-group input, .form-group textarea, .form-group select { font-family: ‘Outfit’, sans-serif; font-size: 0.9rem; font-weight: 300; color: var(–text-dark); background: transparent; border: none; border-bottom: 1px solid var(–border); padding: 12px 0; outline: none; transition: border-color 0.2s; width: 100%; appearance: none; }

.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(–text-dark); }

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

.form-submit { margin-top: 8px; align-self: flex-start; }

/* —- FOOTER —- */ footer { border-top: 1px solid var(–border); padding: 48px 80px; display: flex; justify-content: space-between; align-items: center; background: var(–white); }

.footer-logo img { height: 36px; filter: invert(1) brightness(0); opacity: 0.4; }

.footer-copy { font-size: 0.75rem; color: var(–text-light); letter-spacing: 0.05em; }

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

.footer-links a { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(–text-light); text-decoration: none; transition: color 0.2s; cursor: pointer; }

.footer-links a:hover { color: var(–text-dark); }

/* —- PAGE HERO BANNER —- */ .page-banner { background: var(–off-white); padding: 80px 80px 60px; border-bottom: 1px solid var(–border); }

.page-banner .section-eyebrow { margin-bottom: 8px; }

/* —- LIGHTBOX —- */ .lightbox { position: fixed; inset: 0; background: rgba(10, 10, 10, 0.96); z-index: 3000; display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }

.lightbox.open { display: flex; opacity: 1; }

.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }

.lightbox-close { position: fixed; top: 32px; right: 40px; color: white; font-size: 1.5rem; cursor: pointer; background: none; border: none; opacity: 0.6; transition: opacity 0.2s; font-family: ‘Outfit’, sans-serif; font-weight: 300; }

.lightbox-close:hover { opacity: 1; }

/* —- ANIMATIONS —- */ @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.fade-up { animation: fadeUp 0.7s ease forwards; }

.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; } .fade-up-delay-2 { animation-delay: 0.22s; opacity: 0; } .fade-up-delay-3 { animation-delay: 0.34s; opacity: 0; } .fade-up-delay-4 { animation-delay: 0.46s; opacity: 0; }

/* —- MOBILE —- */ @media (max-width: 900px) { nav { padding: 0 24px; } .nav-links { display: none; } .nav-cta { display: none; } .hamburger { display: flex; }

.nav-links.open { display: flex; flex-direction: column; position: fixed; top: var(–nav-height); left: 0; right: 0; background: var(–white); padding: 32px 24px; gap: 24px; border-bottom: 1px solid var(–border); z-index: 999; }

.hero { grid-template-columns: 1fr; } .hero-image { height: 50vh; order: -1; } .hero-text { padding: 40px 24px; }

.stats-strip { grid-template-columns: 1fr 1fr 1fr; } .stat-item { padding: 32px 16px; } .stat-number { font-size: 2rem; }

.section { padding: 60px 24px; } .page-banner { padding: 48px 24px 40px; }

.gallery-grid { columns: 2; }

.clients-grid { grid-template-columns: 1fr; } .client-card-inner { grid-template-columns: 1fr; } .client-thumbnail { min-height: 260px; } .client-info { padding: 32px 24px; }

.modal-content { padding: 40px 24px; } .modal-header { grid-template-columns: 1fr; gap: 32px; } .modal-gallery { grid-template-columns: 1fr 1fr; } .modal-stats { grid-template-columns: 1fr 1fr 1fr; }

.about-grid { grid-template-columns: 1fr; gap: 40px; } .contact-grid { grid-template-columns: 1fr; gap: 48px; }

footer { flex-direction: column; gap: 24px; padding: 40px 24px; text-align: center; } .footer-links { flex-wrap: wrap; justify-content: center; } }