/* Zeus Color V31 - compact photography design system */
:root {
    --zc-ink: #1d1916;
    --zc-ink-soft: #423a34;
    --zc-muted: #726961;
    --zc-red: #b3131c;
    --zc-red-dark: #8d0f16;
    --zc-red-soft: #f3e3e3;
    --zc-taupe: #8a796b;
    --zc-ivory: #f7f3ed;
    --zc-paper: #efe8df;
    --zc-white: #ffffff;
    --zc-line: rgba(29, 25, 22, .13);
    --zc-line-light: rgba(255, 255, 255, .18);
    --zc-shadow-sm: 0 10px 30px rgba(35, 28, 23, .08);
    --zc-shadow-md: 0 22px 55px rgba(35, 28, 23, .13);
    --zc-radius-sm: 10px;
    --zc-radius: 16px;
    --zc-radius-lg: 24px;
    --zc-container: 1200px;
    --zc-section: clamp(58px, 7vw, 92px);
    --zc-gap: clamp(20px, 2.6vw, 34px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.photography-site {
    margin: 0;
    overflow-x: hidden;
    background: var(--zc-ivory);
    color: var(--zc-ink);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}
body.photography-site::selection { background: var(--zc-red); color: #fff; }
body.photography-site img { max-width: 100%; }
body.photography-site a { color: inherit; text-decoration: none; }
.photography-site :where(h1, h2, h3, h4, p) { overflow-wrap: anywhere; }
.photography-site :where(h1, h2, h3) {
    color: var(--zc-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 600;
    letter-spacing: -.035em;
}
.photography-site :where(p) { color: var(--zc-muted); }
body.photography-site .container { width: min(var(--zc-container), calc(100% - 40px)); margin-inline: auto; }
body.photography-site .section { padding: var(--zc-section) 0; }

/* Topbar and navigation */
.photography-site .site-topbar { background: #171411; color: #d8d1ca; border: 0; }
.photography-site .site-topbar .container { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.photography-site .site-topbar span { font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.photography-site .site-topbar a { color: #fff; margin-left: 18px; font-size: 12px; }
.photo-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(247, 243, 237, .96);
    border-bottom: 1px solid var(--zc-line);
    box-shadow: 0 8px 28px rgba(31, 25, 20, .05);
    backdrop-filter: blur(18px);
}
.photo-header .nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.photo-header .logo-wrap { flex: 0 0 auto; display: inline-flex; align-items: center; }
.photo-header .logo-img { display: block; width: 132px; max-height: 60px; object-fit: contain; }
.photo-header .menu { display: flex; align-items: center; justify-content: flex-end; gap: 3px; }
.photo-header .menu > a,
.photo-header .menu > div > a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 11px;
    border-radius: 8px;
    color: var(--zc-ink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: uppercase;
    transition: .2s ease;
}
.photo-header .menu a:hover,
.photo-header .menu a:focus-visible { background: var(--zc-red-soft); color: var(--zc-red-dark); outline: none; }
.photo-header .nav-cta,
.photo-header .menu .nav-cta {
    margin-left: 6px;
    padding-inline: 18px !important;
    border: 1px solid var(--zc-red) !important;
    border-radius: 999px !important;
    background: var(--zc-red) !important;
    color: #fff !important;
}
.photo-header .nav-cta:hover { background: var(--zc-red-dark) !important; border-color: var(--zc-red-dark) !important; }
.photo-header .dropdown { overflow: hidden; min-width: 210px; border: 1px solid var(--zc-line); border-radius: 12px; background: #fff; box-shadow: var(--zc-shadow-md); }
.photo-header .dropdown a { color: var(--zc-ink); font-size: 13px; }
.photo-header .menu-toggle { border: 1px solid var(--zc-line); border-radius: 10px; background: #fff; color: var(--zc-ink); }

/* Shared type and actions */
.photo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.photo-eyebrow::before { content: ""; width: 30px; height: 2px; border-radius: 9px; background: var(--zc-red); }
.photo-eyebrow.dark,
.dark-head .photo-eyebrow { color: var(--zc-ink-soft); }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
    color: var(--zc-ink);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.text-link span { color: var(--zc-red); font-size: 17px; line-height: 1; }
.text-link.light { color: #fff; }
.photography-site .btn,
.photography-site a.btn,
.photography-site button.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin: 0;
    padding: 13px 20px !important;
    border: 1px solid var(--zc-red) !important;
    border-radius: 10px;
    background: var(--zc-red) !important;
    box-shadow: none !important;
    color: #fff !important;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.photography-site .btn:hover { transform: translateY(-2px); background: var(--zc-red-dark) !important; border-color: var(--zc-red-dark) !important; }
.photography-site .btn.secondary { background: transparent !important; border-color: rgba(29,25,22,.35) !important; color: var(--zc-ink) !important; }
.photography-site .btn.secondary:hover { background: var(--zc-ink) !important; border-color: var(--zc-ink) !important; color: #fff !important; }

/* Main slider */
.photo-slider,
.photo-slider .slider-track,
.photo-slider .slider-slide { min-height: clamp(540px, 72vh, 760px); }
.photo-slider { position: relative; overflow: hidden; background: #151210; }
.photo-slider .slider-slide { position: absolute; inset: 0; display: flex; align-items: flex-end; overflow: hidden; }
.photo-slider .slider-bg { position: absolute; inset: 0; background-position: center; background-size: cover; transform: scale(1.025); transition: transform 8s ease; }
.photo-slider .slider-slide.is-active .slider-bg { transform: scale(1.095); }
.photo-slider .slider-slide::before { display: none !important; }
.photo-slider .slider-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(19,15,13,.91) 0%, rgba(19,15,13,.72) 43%, rgba(19,15,13,.22) 76%, rgba(19,15,13,.08) 100%),
        linear-gradient(0deg, rgba(15,12,10,.62) 0%, rgba(15,12,10,0) 55%);
}
.photo-slider .container { position: relative; z-index: 2; display: flex; align-items: flex-end; padding-bottom: clamp(58px, 8vh, 86px); }
.photo-slider .slider-content { width: min(650px, 62%); max-width: 650px; padding: 0; background: transparent; box-shadow: none; color: #fff; }
.photo-slider h1 {
    max-width: 760px;
    margin: 15px 0 18px;
    color: #fff;
    font-size: clamp(46px, 6vw, 82px);
    line-height: .98;
    text-shadow: 0 4px 24px rgba(0,0,0,.38);
}
.photo-slider .lead { max-width: 590px; margin: 0; color: #f2ede8; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.58; text-shadow: 0 2px 15px rgba(0,0,0,.45); }
.photo-slider .slider-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 27px; }
.photo-slider .btn { background: #fff !important; border-color: #fff !important; color: var(--zc-ink) !important; }
.photo-slider .btn:hover { background: var(--zc-red) !important; border-color: var(--zc-red) !important; color: #fff !important; }
.photo-slider .btn.secondary { background: rgba(20,16,13,.38) !important; border-color: rgba(255,255,255,.7) !important; color: #fff !important; backdrop-filter: blur(8px); }
.photo-slider .btn.secondary:hover { background: #fff !important; border-color: #fff !important; color: var(--zc-ink) !important; }
.photo-slider .slide-number { position: absolute; right: 4vw; bottom: 34px; z-index: 2; color: rgba(255,255,255,.24); font-family: Georgia, serif; font-size: 58px; }
.photo-slider .slider-arrow { width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; background: rgba(15,12,10,.38); color: #fff; }
.photo-slider .slider-arrow:hover { background: #fff; color: var(--zc-ink); }
.photo-slider .slider-dot { background: rgba(255,255,255,.42); }
.photo-slider .slider-dot.is-active { width: 34px; border-radius: 99px; background: #fff; }

/* Home intro */
.photo-intro { padding: var(--zc-section) 0; }
.photo-intro-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(38px, 6vw, 76px); align-items: center; }
.photo-intro-copy h2,
.photo-section-head h2,
.photo-process h2,
.photo-final-cta h2 {
    margin: 15px 0 18px;
    color: inherit;
    font-size: clamp(36px, 4.2vw, 60px);
    line-height: 1.04;
}
.photo-intro-copy .lead { max-width: 560px; margin: 0 0 27px; color: var(--zc-muted); font-size: 17px; }
.photo-intro-collage { position: relative; height: clamp(420px, 48vw, 570px); }
.photo-intro-collage figure { position: absolute; overflow: hidden; margin: 0; border-radius: var(--zc-radius); box-shadow: var(--zc-shadow-md); }
.photo-intro-collage img { width: 100%; height: 100%; object-fit: cover; }
.photo-intro-collage .collage-1 { top: 0; right: 0; width: 64%; height: 78%; }
.photo-intro-collage .collage-2 { bottom: 0; left: 0; width: 53%; height: 48%; }
.photo-intro-collage .collage-3 { top: 8%; left: 9%; width: 30%; height: 30%; border: 8px solid var(--zc-ivory); }

/* Section headings */
.section-head.photo-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: clamp(30px, 4vw, 48px); }
.photo-section-head h2 { max-width: 760px; margin-bottom: 0; }
.dark-head .photo-eyebrow { color: var(--zc-ink-soft); }

/* Home services */
.photo-service-strip { padding: var(--zc-section) 0; background: #1b1714; color: #fff; }
.photo-service-strip .photo-section-head h2 { color: #fff; }
.photo-service-strip .photo-eyebrow::before { background: #d73a43; }
.photo-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.photo-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 286px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--zc-radius);
    background: rgba(255,255,255,.035);
    color: #fff;
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.photo-service-card::after { content: ""; position: absolute; right: -58px; bottom: -58px; width: 150px; height: 150px; border-radius: 50%; background: rgba(179,19,28,.12); transition: transform .3s ease; }
.photo-service-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.07); }
.photo-service-card:hover::after { transform: scale(1.28); }
.photo-service-card > * { position: relative; z-index: 1; }
.photo-service-card small { display: block; color: #c7bdb5; font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.photo-service-card h3 { margin: 22px 0 12px; color: #fff; font-size: clamp(25px, 2.3vw, 33px); line-height: 1.08; }
.photo-service-card p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: #d8d0c9;
    font-size: 14px;
    line-height: 1.62;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}
.photo-service-card > span { position: static; display: inline-flex; align-items: center; margin-top: auto; padding-top: 22px; color: #fff; font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }

/* Home portfolio */
.portfolio-section { padding: var(--zc-section) 0; background: var(--zc-ivory); }
.portfolio-mosaic {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 18px;
}
.portfolio-tile,
.portfolio-tile.tile-1,
.portfolio-tile.tile-2,
.portfolio-tile.tile-3,
.portfolio-tile.tile-4,
.portfolio-tile.tile-5,
.portfolio-tile.tile-6 {
    position: relative;
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--zc-radius);
    background: #191512;
    box-shadow: var(--zc-shadow-sm);
}
.portfolio-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .3s ease; }
.portfolio-tile:hover img { transform: scale(1.055); filter: saturate(1.05); }
.portfolio-tile > div {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    padding: 70px 23px 21px;
    background: linear-gradient(transparent, rgba(15,12,10,.92));
    color: #fff;
}
.portfolio-tile small { color: #e5ddd5; font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.portfolio-tile h3 { margin: 6px 0 5px; color: #fff; font-size: clamp(24px, 2.4vw, 33px); line-height: 1.08; text-shadow: 0 2px 14px rgba(0,0,0,.55); }
.portfolio-tile span { color: #fff; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.portfolio-tile::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.12); border-radius: inherit; pointer-events: none; }

/* Process */
.photo-process { padding: var(--zc-section) 0; background: var(--zc-paper); }
.photo-process-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(40px, 6vw, 74px); align-items: start; }
.photo-process h2 { position: sticky; top: 126px; font-size: clamp(36px, 4vw, 56px); }
.process-list { border-top: 1px solid var(--zc-line); }
.process-list article { display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--zc-line); }
.process-list strong { color: var(--zc-red); font-size: 12px; letter-spacing: .13em; }
.process-list h3 { margin: 0 0 6px; font-size: 27px; }
.process-list p { margin: 0; color: var(--zc-muted); font-size: 15px; }

/* Journal and reusable cards */
.photo-journal { padding: var(--zc-section) 0; }
.journal-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.journal-card,
.project-card,
.team-card,
.video-editorial-card,
.booking-form,
.booking-aside,
.service-sticky-cta,
.project-detail-layout aside,
.blog-detail-layout aside,
.contact-stack-card,
.contact-floating-form,
.contact-modern-map,
.card.rich-content {
    border: 1px solid var(--zc-line);
    border-radius: var(--zc-radius);
    background: #fff;
    box-shadow: var(--zc-shadow-sm);
}
.journal-card { overflow: hidden; }
.journal-card img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .45s ease; }
.journal-card:hover img { transform: scale(1.035); }
.journal-card > div { padding: 23px; }
.journal-card small,
.project-card small,
.team-card small { color: var(--zc-red); font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.journal-card h3 { margin: 9px 0 10px; font-size: 26px; line-height: 1.14; }
.journal-card p { display: -webkit-box; overflow: hidden; margin: 0 0 18px; color: var(--zc-muted); font-size: 14px; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }

/* Final call to action */
.photo-final-cta { padding: clamp(60px, 7vw, 86px) 0; background: var(--zc-red); color: #fff; }
.photo-final-cta .container { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(260px, .45fr); gap: 42px; align-items: end; }
.photo-final-cta h2 { max-width: 800px; margin-bottom: 0; color: #fff; font-size: clamp(36px, 4vw, 56px); }
.photo-final-cta .container > div:last-child { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.photo-final-cta .btn { background: #fff !important; border-color: #fff !important; color: var(--zc-ink) !important; }
.photo-final-cta .btn:hover { background: var(--zc-paper) !important; border-color: var(--zc-paper) !important; color: var(--zc-ink) !important; }
.photo-final-cta .btn.secondary { background: transparent !important; border-color: rgba(255,255,255,.72) !important; color: #fff !important; }
.photo-final-cta .btn.secondary:hover { background: #fff !important; color: var(--zc-ink) !important; }

/* Inner page heroes */
.photo-page-hero { padding: clamp(70px, 9vw, 112px) 0 clamp(58px, 7vw, 88px); background: #1b1714; color: #fff; }
.photo-page-hero h1 { max-width: 960px; margin: 16px 0 18px; color: #fff; font-size: clamp(46px, 6.5vw, 82px); line-height: .98; }
.photo-page-hero p { max-width: 700px; margin: 0; color: #d3cbc4; font-size: 18px; }
.photo-page-hero .gallery-tabs { display: flex; gap: 10px; margin-top: 28px; }
.photo-page-hero .gallery-tabs a { padding: 10px 15px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; color: #d6cec7; font-size: 12px; font-weight: 800; }
.photo-page-hero .gallery-tabs a.active { border-color: #fff; background: #fff; color: var(--zc-ink); }

/* Services listing and detail */
.service-editorial-list { overflow: hidden; border: 1px solid var(--zc-line); border-radius: var(--zc-radius); background: #fff; }
.service-editorial-item { display: grid; grid-template-columns: 56px minmax(0, 1fr) 34px; gap: 22px; align-items: center; padding: 28px 30px; border-bottom: 1px solid var(--zc-line); transition: background .2s ease, padding-left .2s ease; }
.service-editorial-item:last-child { border-bottom: 0; }
.service-editorial-item:hover { padding-left: 38px; background: #fbf8f4; }
.service-editorial-item small { color: var(--zc-red); font-size: 11px; font-weight: 900; letter-spacing: .13em; }
.service-editorial-item h2 { margin: 0 0 5px; color: var(--zc-ink); font-size: clamp(28px, 3vw, 43px); }
.service-editorial-item p { margin: 0; color: var(--zc-muted); }
.service-editorial-item > span { color: var(--zc-red); font-size: 25px; text-align: right; }
.service-detail-layout,
.project-detail-layout,
.blog-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(34px, 6vw, 72px); align-items: start; }
.service-detail-copy,
.blog-detail-copy { font-size: 17px; }
.service-sticky-cta,
.project-detail-layout aside,
.blog-detail-layout aside { position: sticky; top: 112px; padding: 28px; }
.service-sticky-cta h3,
.blog-detail-layout aside h3 { margin: 10px 0 20px; font-size: 28px; line-height: 1.15; }
.service-sticky-cta .btn,
.blog-detail-layout aside .btn { width: 100%; margin-bottom: 20px; }

/* Portfolio listing */
.portfolio-list-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.portfolio-list-card { position: relative; min-height: 0; aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--zc-radius); background: #171310; box-shadow: var(--zc-shadow-sm); color: #fff; }
.portfolio-list-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.portfolio-list-card:hover img { transform: scale(1.045); }
.portfolio-list-card > div { position: absolute; inset: auto 0 0; z-index: 2; padding: 100px 27px 27px; background: linear-gradient(transparent, rgba(14,11,9,.94)); }
.portfolio-list-card small,
.portfolio-list-card span { color: #e7dfd8; font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.portfolio-list-card h2 { margin: 8px 0 8px; color: #fff; font-size: clamp(31px, 4vw, 46px); line-height: 1.05; }
.portfolio-list-card p { display: -webkit-box; overflow: hidden; margin: 0 0 13px; color: #d6cec7; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }

/* Projects */
.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.project-card { display: block; overflow: hidden; }
.project-card img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .5s ease; }
.project-card:hover img { transform: scale(1.035); }
.project-card > div { padding: 25px; }
.project-card h2 { margin: 8px 0 8px; font-size: 34px; line-height: 1.08; }
.project-card p { display: -webkit-box; overflow: hidden; margin: 0 0 16px; color: var(--zc-muted); -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.project-card span { color: var(--zc-ink); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.project-detail-hero,
.album-hero,
.blog-detail-hero { position: relative; display: flex; align-items: flex-end; min-height: clamp(520px, 70vh, 720px); background-position: center; background-size: cover; color: #fff; }
.album-hero-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(13,10,8,.92) 0%, rgba(13,10,8,.38) 62%, rgba(13,10,8,.16) 100%); }
.project-detail-hero .container,
.album-hero .container,
.blog-detail-hero .container { position: relative; z-index: 2; padding-bottom: clamp(48px, 7vw, 76px); }
.project-detail-hero h1,
.album-hero h1,
.blog-detail-hero h1 { max-width: 980px; margin: 15px 0; color: #fff; font-size: clamp(48px, 7vw, 88px); line-height: .96; }
.project-detail-hero p,
.album-hero p,
.blog-detail-hero p { max-width: 720px; color: #ded6cf; font-size: 17px; }
.album-hero a { display: inline-block; margin-bottom: 22px; color: #fff; font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.project-gallery { margin-top: 64px; }
.project-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 58px; padding-top: 26px; border-top: 1px solid var(--zc-line); }
.project-nav a:last-child { text-align: right; }
.project-nav small { display: block; color: var(--zc-muted); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.project-nav strong { font-family: Georgia, serif; font-size: 21px; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.team-card { overflow: hidden; }
.team-card > img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.team-card > div { padding: 24px; }
.team-card h2 { margin: 7px 0 8px; font-size: 31px; }
.team-card p { color: var(--zc-muted); }

/* Forms and contact */
.booking-layout,
.contact-modern-layout,
.page-with-image { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(290px, .55fr); gap: clamp(30px, 5vw, 60px); align-items: start; }
.booking-form,
.booking-aside,
.contact-stack-card,
.contact-floating-form { padding: 30px; }
.booking-aside { position: sticky; top: 112px; background: var(--zc-paper); }
.booking-aside h2 { margin: 10px 0 24px; font-size: 34px; line-height: 1.1; }
.booking-aside ol { margin: 0; padding: 0; list-style: none; }
.booking-aside li { display: grid; grid-template-columns: 78px 1fr; gap: 13px; padding: 15px 0; border-top: 1px solid var(--zc-line); }
.booking-aside li strong { color: var(--zc-red); }
.booking-aside li span { color: var(--zc-muted); }
.photography-site .form input,
.photography-site .form select,
.photography-site .form textarea,
.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    min-height: 48px;
    margin-top: 7px;
    padding: 12px 13px;
    border: 1px solid #cec5bc;
    border-radius: 9px;
    background: #fff;
    color: var(--zc-ink);
    font: inherit;
}
.photography-site .form textarea,
.booking-form textarea { min-height: 140px; resize: vertical; }
.photography-site .form input::placeholder,
.photography-site .form textarea::placeholder { color: #80766e; opacity: 1; }
.photography-site .form input:focus,
.photography-site .form select:focus,
.photography-site .form textarea:focus,
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus { outline: 3px solid rgba(179,19,28,.12); border-color: var(--zc-red); }
.contact-modern-hero { padding: clamp(70px, 8vw, 100px) 0; background: #1b1714; color: #fff; }
.contact-modern-hero-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr); gap: 50px; align-items: center; }
.contact-modern-hero h1 { margin: 15px 0 17px; color: #fff; font-size: clamp(48px, 6vw, 80px); line-height: .98; }
.contact-modern-hero .lead { color: #d5cdc5; }
.contact-modern-panel { padding: 26px; border: 1px solid var(--zc-line-light); border-radius: var(--zc-radius); background: rgba(255,255,255,.055); }
.contact-modern-section { padding: var(--zc-section) 0; }
.contact-modern-map { overflow: hidden; }
.contact-modern-map iframe { display: block; width: 100%; min-height: 360px; border: 0; }
.contact-mini-stat strong { color: #ef4b54; }

/* Content pages */
.page-title-band { padding: clamp(58px, 8vw, 90px) 0; background: var(--zc-paper); }
.page-title-band h1,
.page-visual-hero h1 { margin: 12px 0; font-size: clamp(44px, 6vw, 76px); line-height: 1; }
.page-visual-hero { position: relative; display: flex; align-items: flex-end; min-height: clamp(440px, 58vh, 610px); overflow: hidden; background: #1b1714; color: #fff; }
.page-visual-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,12,10,.86), rgba(15,12,10,.22)); }
.page-visual-bg { position: absolute; inset: 0; background-position: center; background-size: cover; }
.page-visual-hero .container { position: relative; z-index: 2; padding-bottom: 55px; }
.page-visual-hero h1,
.page-visual-hero .lead { color: #fff; }
.page-visual-hero .lead { max-width: 720px; }
.page-kicker.pill { display: inline-flex; padding: 7px 12px; border-radius: 999px; background: var(--zc-red); color: #fff; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.card.rich-content { padding: clamp(25px, 4vw, 42px); }
.rich-content { color: var(--zc-ink-soft); }
.rich-content h2,
.rich-content h3 { color: var(--zc-ink); }
.rich-content a { color: var(--zc-red-dark); text-decoration: underline; text-underline-offset: 3px; }
.page-side-image img { display: block; width: 100%; aspect-ratio: 4 / 3; border-radius: var(--zc-radius); object-fit: cover; box-shadow: var(--zc-shadow-sm); }
.mv-inline-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 28px; }
.mv-inline-card { padding: 23px; border: 1px solid var(--zc-line); border-radius: 12px; background: var(--zc-paper); }

/* Gallery and video */
.photo-waterfall { columns: 3 290px; column-gap: 16px; }
.photo-waterfall .gallery-item { display: block; width: 100%; margin: 0 0 16px; padding: 0; overflow: hidden; break-inside: avoid; border: 0; border-radius: 12px; background: #ddd; cursor: zoom-in; }
.photo-waterfall img { display: block; width: 100%; height: auto; transition: transform .4s ease; }
.photo-waterfall .gallery-item:hover img { transform: scale(1.025); }
.video-editorial-grid { display: grid; gap: 22px; }
.video-editorial-card { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr); overflow: hidden; align-items: center; }
.video-frame-wrap { position: relative; aspect-ratio: 16 / 9; background: #000; }
.video-frame-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-editorial-card > div:last-child { padding: 30px; }
.video-editorial-card h2,
.video-empty-state h2 { margin: 0 0 10px; font-size: 34px; }
.video-empty-state { max-width: 760px; padding: 38px; border: 1px solid var(--zc-line); border-radius: var(--zc-radius); background: var(--zc-paper); }

/* Footer */
.photo-footer { padding-top: 64px; background: #171411; color: #fff; }
.photo-footer .site-footer-grid { padding-bottom: 50px; border-bottom: 1px solid var(--zc-line-light); }
.footer-logo-plate { display: inline-flex; padding: 10px; border-radius: 10px; background: #fff; }
.photo-footer .site-footer-brand img { width: 138px; }
.photo-footer h3 { margin: 0 0 8px; color: #fff; font-size: 27px; }
.photo-footer h4 { color: #fff; }
.photo-footer p,
.photo-footer a { color: #bbb2aa; }
.photo-footer a:hover { color: #fff; }
.photo-footer .footer-bottom { border-top: 0; }

/* Floating contact - Zeus Color V34 */
.floating-contact {
    position: fixed;
    left: max(18px, env(safe-area-inset-left));
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 120;
    display: flex;
    flex-direction: column;
    align-items: center;
    isolation: isolate;
}
.floating-contact-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 9px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px) scale(.94);
    transform-origin: bottom center;
    transition: opacity .2s ease, visibility .2s ease, transform .25s cubic-bezier(.2,.8,.2,1);
}
.floating-contact.is-open .floating-contact-actions {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}
.floating-contact-action,
.floating-contact-toggle {
    position: relative;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #fff !important;
    line-height: 1;
    text-decoration: none;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 8px 20px rgba(18, 15, 13, .2), inset 0 0 0 1px rgba(255,255,255,.18);
    transition: opacity .18s ease, transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.floating-contact-action {
    width: 44px;
    height: 44px;
    opacity: 0;
    transform: translateY(8px) scale(.88);
    transition-delay: 0s;
}
.floating-contact.is-open .floating-contact-action {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: calc(var(--action-index, 1) * 28ms);
}
.floating-contact-action.is-whatsapp { background: #25d366; }
.floating-contact-action.is-instagram { background: radial-gradient(circle at 31% 107%, #fdf497 0 5%, #fdf497 6%, #fd5949 40%, #d6249f 62%, #285aeb 90%); }
.floating-contact-action.is-phone { background: #0a84ff; }
.floating-contact-action.is-maps { background: #4285f4; }
.floating-contact-action.is-email { background: #ea4335; }
.floating-contact-action::after {
    content: attr(data-label);
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    z-index: 3;
    padding: 7px 10px;
    border-radius: 8px;
    background: rgba(24, 20, 18, .94);
    color: #fff;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .01em;
    line-height: 1;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translate(-5px, -50%);
    transition: opacity .18s ease, transform .18s ease;
    box-shadow: 0 7px 18px rgba(0,0,0,.2);
}
.floating-contact-action:hover,
.floating-contact-action:focus-visible {
    z-index: 2;
    transform: translateY(-2px) scale(1.045);
    filter: saturate(1.08) brightness(1.02);
    box-shadow: 0 12px 25px rgba(18, 15, 13, .26), inset 0 0 0 1px rgba(255,255,255,.24);
    outline: none;
}
.floating-contact-action:hover::after,
.floating-contact-action:focus-visible::after {
    opacity: 1;
    transform: translate(0, -50%);
}
.floating-contact-toggle {
    width: 54px;
    height: 54px;
    overflow: visible;
    border: 1px solid rgba(255,255,255,.28);
    background: linear-gradient(145deg, var(--zc-red), var(--zc-red-dark));
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(179, 19, 28, .34), inset 0 0 0 1px rgba(255,255,255,.18);
}
.floating-contact-toggle:hover,
.floating-contact-toggle:focus-visible {
    transform: translateY(-1px) scale(1.035);
    outline: 3px solid rgba(179,19,28,.18);
    outline-offset: 3px;
}
.floating-contact-pulse {
    position: absolute;
    inset: -5px;
    z-index: -1;
    border: 1px solid rgba(179,19,28,.4);
    border-radius: inherit;
    animation: floating-contact-pulse 2.6s ease-out infinite;
}
.floating-contact.is-open .floating-contact-pulse { display: none; }
.floating-contact svg {
    display: block;
    width: 20px;
    height: 20px;
    margin: 0;
    color: #fff !important;
    fill: #fff !important;
    stroke: none;
    flex: 0 0 auto;
}
.floating-contact-action svg path,
.floating-contact-toggle svg path {
    fill: #fff !important;
    stroke: none !important;
}
.floating-contact-toggle svg { width: 22px; height: 22px; }
.floating-contact-action.is-instagram svg { width: 21px; height: 21px; }
.floating-contact-action.is-whatsapp svg { width: 21px; height: 21px; }
.floating-contact-action.is-phone svg { width: 19px; height: 19px; }
.floating-contact-toggle .icon-close { display: none; }
.floating-contact.is-open .icon-open { display: none; }
.floating-contact.is-open .icon-close { display: block; }
@keyframes floating-contact-pulse {
    0% { opacity: .65; transform: scale(.92); }
    72%, 100% { opacity: 0; transform: scale(1.22); }
}

/* Admin palette and V30 repair screen */
body.admin-body { --magenta: #b3131c; --navy: #211c19; --navy-2: #342c27; --cyan: #887568; --green: #dccabd; --orange: #a8622d; }
.admin-body .sidebar { background: #1c1815; }
.admin-body .v22-admin-hero { background: linear-gradient(135deg, #211c19, #5b1015); }
.admin-body .btn,
.admin-body a.btn,
.admin-body button.btn { background: #b3131c !important; border-color: #b3131c !important; color: #fff !important; }
.admin-body .btn:hover { background: #8d0f16 !important; border-color: #8d0f16 !important; }
.charset-repair-card { max-width: 820px; }
.charset-repair-card .form-actions { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }
.charset-repair-card code { padding: 2px 6px; border-radius: 4px; background: #f4efe7; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; }
.charset-repair-card details { margin-top: 21px; }
.charset-repair-card details summary { margin-bottom: 13px; cursor: pointer; font-weight: 800; }
.charset-repair-card ul { display: grid; gap: 8px; margin: 0; padding-left: 21px; }
.zeus-login-box { border-top: 4px solid var(--zc-red) !important; border-radius: 0 !important; text-align: center; }
.zeus-login-logo { width: 170px; max-height: 110px; margin: 0 auto 18px; padding: 10px; background: #fff; object-fit: contain; }
.zeus-login-box h1 { font-family: Georgia, serif; }

/* Responsive */
@media (max-width: 980px) {
    .photo-header .menu { display: none; }
    .photo-header .menu.is-open { display: flex; }
}

@media (max-width: 1050px) {
    .photo-header .menu { background: #fff; }
    .photo-service-grid,
    .portfolio-mosaic,
    .journal-grid,
    .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .photo-intro-grid,
    .photo-process-grid,
    .service-detail-layout,
    .project-detail-layout,
    .blog-detail-layout,
    .booking-layout,
    .contact-modern-layout,
    .contact-modern-hero-grid,
    .page-with-image,
    .photo-final-cta .container { grid-template-columns: 1fr; }
    .photo-process h2,
    .service-sticky-cta,
    .project-detail-layout aside,
    .blog-detail-layout aside,
    .booking-aside { position: static; }
    .photo-final-cta .container > div:last-child { justify-content: flex-start; }
}

@media (max-width: 720px) {
    body.photography-site .container { width: min(100% - 26px, var(--zc-container)); }
    .photography-site .site-topbar span,
    .photo-slider .slide-number { display: none; }
    .photography-site .site-topbar .container { justify-content: center; }
    .photography-site .site-topbar a { margin: 0 8px; }
    .photo-header .nav { min-height: 70px; }
    .photo-header .logo-img { width: 112px; max-height: 52px; }
    .photo-slider,
    .photo-slider .slider-track,
    .photo-slider .slider-slide { min-height: 68svh; }
    .photo-slider .slider-content { width: 100%; }
    .photo-slider h1 { font-size: clamp(41px, 13vw, 57px); }
    .photo-slider .slider-actions { display: grid; grid-template-columns: 1fr; }
    .photo-slider .btn { width: 100%; }
    .photo-intro-collage { height: 410px; }
    .photo-intro-collage .collage-1 { width: 68%; }
    .photo-intro-collage .collage-2 { width: 56%; }
    .photo-service-grid,
    .portfolio-mosaic,
    .journal-grid,
    .portfolio-list-grid,
    .project-grid,
    .team-grid,
    .mv-inline-grid { grid-template-columns: 1fr; }
    .photo-service-card { min-height: 260px; padding: 25px; }
    .portfolio-tile,
    .portfolio-tile.tile-1,
    .portfolio-tile.tile-2,
    .portfolio-tile.tile-3,
    .portfolio-tile.tile-4,
    .portfolio-tile.tile-5,
    .portfolio-tile.tile-6 { aspect-ratio: 4 / 3; }
    .section-head.photo-section-head { align-items: flex-start; flex-direction: column; gap: 18px; }
    .photo-final-cta .container > div:last-child { display: grid; grid-template-columns: 1fr; width: 100%; }
    .photo-final-cta .btn { width: 100%; }
    .service-editorial-item { grid-template-columns: 40px minmax(0, 1fr) 24px; gap: 12px; padding: 23px 18px; }
    .service-editorial-item:hover { padding-left: 18px; }
    .service-editorial-item p { display: none; }
    .project-nav { grid-template-columns: 1fr; }
    .project-nav a:last-child { text-align: left; }
    .video-editorial-card { grid-template-columns: 1fr; }
    .photo-waterfall { columns: 2 145px; }
    .floating-contact {
        left: max(12px, env(safe-area-inset-left));
        bottom: max(12px, env(safe-area-inset-bottom));
    }
    .floating-contact-actions { gap: 7px; margin-bottom: 8px; }
    .floating-contact-action { width: 42px; height: 42px; }
    .floating-contact-toggle { width: 52px; height: 52px; }
    .floating-contact-action::after { display: none; }
}

@media (max-width: 430px) {
    .photo-waterfall { columns: 1; }
    .photo-slider .slider-arrow { display: none; }
    .photo-intro-collage { height: 360px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Zeus Color V32 - iletişim formu taşma düzeltmesi */
.contact-modern-layout {
    grid-template-columns: minmax(0, 1fr) minmax(420px, .72fr);
}
.contact-modern-layout > *,
.contact-form-shell,
.contact-floating-form,
.contact-floating-form .form,
.contact-floating-form .two-col,
.contact-floating-form .turnstile-shell {
    min-width: 0;
    max-width: 100%;
}
.contact-floating-form {
    overflow: hidden;
}
.contact-floating-form .two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.contact-floating-form input,
.contact-floating-form textarea,
.contact-floating-form select,
.contact-floating-form button {
    max-width: 100%;
}
.photography-site .contact-floating-form .compact-kvkk {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    min-width: 0;
}
.photography-site .contact-floating-form .compact-kvkk input[type="checkbox"] {
    appearance: auto;
    width: 18px;
    min-width: 18px;
    max-width: 18px;
    height: 18px;
    min-height: 18px;
    margin: 3px 0 0;
    padding: 0;
    border-radius: 4px;
    box-shadow: none;
}
.contact-floating-form .compact-kvkk span,
.contact-floating-form .compact-kvkk a,
.contact-floating-form .turnstile-shell small {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: normal;
}
.contact-floating-form .turnstile-shell {
    width: 100%;
    overflow: hidden;
    justify-items: stretch;
}
.contact-floating-form .cf-turnstile,
.contact-floating-form .cf-turnstile > div,
.contact-floating-form .cf-turnstile iframe {
    max-width: 100% !important;
}
.contact-floating-form .btn[type="submit"] {
    width: 100%;
    justify-content: center;
    margin-top: 2px;
}

@media (max-width: 1120px) and (min-width: 1051px) {
    .contact-modern-layout {
        grid-template-columns: minmax(0, 1fr) minmax(390px, .82fr);
        gap: 30px;
    }
}

@media (max-width: 720px) {
    .contact-floating-form,
    .contact-stack-card {
        padding: 22px;
    }
    .contact-floating-form .two-col {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 360px) {
    .contact-floating-form,
    .contact-stack-card {
        padding: 18px;
    }
    .contact-floating-form .turnstile-shell {
        padding: 8px;
    }
}

/* Zeus Color V33 - mobil iletişim sayfası düzeltmeleri */
@media (max-width: 1050px) {
    .contact-modern-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
    }
    .contact-modern-info,
    .contact-form-shell,
    .contact-stack-card,
    .contact-floating-form,
    .contact-modern-map {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }
    .contact-form-shell {
        position: static;
        top: auto;
    }
}

@media (max-width: 720px) {
    .contact-modern-hero {
        padding: 50px 0 38px;
    }
    .contact-modern-hero-grid {
        gap: 22px;
    }
    .contact-modern-copy h1 {
        margin-top: 12px;
        font-size: clamp(40px, 12vw, 54px);
        line-height: 1.02;
    }
    .contact-modern-copy .lead {
        font-size: 15px;
        line-height: 1.62;
    }
    .contact-modern-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
        width: 100%;
    }
    .contact-modern-actions .btn {
        width: 100%;
        min-width: 0;
        white-space: normal;
    }
    .contact-modern-hero .contact-modern-actions .btn.secondary {
        border-color: #fff !important;
        background: #fff !important;
        color: var(--zc-ink) !important;
    }
    .contact-modern-hero .contact-modern-actions .btn.secondary:hover {
        border-color: var(--zc-red) !important;
        background: var(--zc-red) !important;
        color: #fff !important;
    }
    .contact-modern-panel {
        gap: 10px;
        padding: 16px;
        border-radius: 18px;
    }
    .contact-mini-stat {
        min-width: 0;
        padding: 12px;
        border-radius: 13px;
    }
    .contact-mini-stat span {
        min-width: 0;
        overflow-wrap: anywhere;
    }
    .contact-modern-section {
        padding: 46px 0 58px;
    }
    .contact-modern-layout {
        gap: 18px;
    }
    .contact-floating-form,
    .contact-stack-card {
        padding: 20px;
        border-radius: 18px;
    }
    .contact-floating-form h2,
    .contact-stack-card h2 {
        font-size: clamp(29px, 9vw, 37px);
        line-height: 1.08;
    }
    .contact-line {
        grid-template-columns: minmax(0, 1fr);
        gap: 5px;
        padding: 14px 0;
    }
    .contact-line div,
    .contact-line a,
    .contact-line p {
        min-width: 0;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .contact-modern-map {
        width: 100% !important;
        margin-top: 14px;
        border-radius: 18px;
    }
    .contact-modern-map iframe {
        width: 100% !important;
        min-height: 280px;
        max-height: 360px;
    }
    .contact-floating-form .form {
        width: 100%;
        min-width: 0;
    }
    .contact-floating-form .two-col {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
    }
    .contact-floating-form input,
    .contact-floating-form textarea,
    .contact-floating-form select,
    .contact-floating-form button {
        width: 100%;
        min-width: 0;
    }
    .contact-floating-form textarea {
        min-height: 126px;
    }
    .photography-site .contact-floating-form .compact-kvkk {
        grid-template-columns: 18px minmax(0, 1fr);
        gap: 9px;
        font-size: 13px;
        line-height: 1.55;
    }
    .contact-floating-form .turnstile-shell {
        width: 100%;
        min-width: 0;
        padding: 10px;
        overflow: visible;
    }
    .contact-floating-form .cf-turnstile,
    .contact-floating-form .cf-turnstile > div,
    .contact-floating-form .cf-turnstile iframe {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }
    .contact-floating-form .turnstile-shell small {
        display: block;
        font-size: 11px;
        line-height: 1.45;
    }
    .contact-floating-form .btn[type="submit"] {
        min-height: 50px;
        white-space: normal;
    }
}

@media (max-width: 430px) {
    body.photography-site .container {
        width: calc(100% - 20px);
    }
    .photography-site .site-topbar .container {
        min-width: 0;
        overflow: hidden;
    }
    .photography-site .site-topbar .container > div {
        display: flex;
        min-width: 0;
        max-width: 100%;
        justify-content: center;
        gap: 12px;
    }
    .photography-site .site-topbar a {
        min-width: 0;
        margin: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .photography-site .site-topbar a[href^="mailto:"] {
        display: none;
    }
    .contact-modern-panel,
    .contact-floating-form,
    .contact-stack-card {
        padding: 17px;
    }
    .contact-mini-stat strong {
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
    }
    .contact-floating-form .turnstile-shell {
        padding: 8px;
    }
    .floating-contact {
        left: max(10px, env(safe-area-inset-left));
        bottom: max(10px, env(safe-area-inset-bottom));
    }
}

