/* 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));
    }
}


/* ========================================================================== 
   Dubai Shootings V1.0 luxury experience layer
   ========================================================================== */
:root{
 --ds-ink:#17130f;--ds-ink-2:#272018;--ds-paper:#f7f3ec;--ds-cream:#eee5d8;
 --ds-gold:#c8a96b;--ds-gold-dark:#9e7d42;--ds-sand:#d9c3a1;--ds-white:#fff;
 --ds-muted:#6f675f;--ds-line:rgba(23,19,15,.14);--ds-dark-line:rgba(255,255,255,.16);
 --ds-serif:"Playfair Display",Georgia,serif;--ds-sans:"DM Sans",Arial,sans-serif;
 --ds-radius:18px;--ds-radius-sm:12px;--ds-shadow:0 24px 70px rgba(20,15,10,.14);
 --ds-section:clamp(74px,8vw,126px)
}
*{box-sizing:border-box}.ds-site{margin:0;background:var(--ds-paper);color:var(--ds-ink);font-family:var(--ds-sans);font-size:16px;line-height:1.6;overflow-x:hidden}.ds-site img{max-width:100%}.ds-site a{text-decoration:none;color:inherit}.ds-site button,.ds-site input,.ds-site select,.ds-site textarea{font:inherit}.ds-site h1,.ds-site h2,.ds-site h3{font-family:var(--ds-serif);font-weight:600;letter-spacing:-.025em}.ds-site .container{width:min(1240px,calc(100% - 40px));margin-inline:auto}.skip-link{position:fixed;top:8px;left:8px;z-index:9999;padding:10px 14px;background:#fff;color:#000;transform:translateY(-150%)}.skip-link:focus{transform:none}.hp-field{position:absolute!important;left:-9999px!important;opacity:0!important}.notice{padding:14px 16px;border-radius:10px;margin-bottom:20px}.notice.success{background:#e7f5ec;color:#185b31}.notice.error{background:#fbe8e6;color:#8a241b}
.ds-topbar{position:relative;z-index:80;background:#0e0c0a;color:#d9d0c5;font-size:12px;letter-spacing:.035em}.ds-topbar .container{display:flex;justify-content:space-between;align-items:center;min-height:36px}.ds-topbar-links{display:flex;gap:22px}.ds-topbar a:hover{color:#fff}.ds-header{position:sticky;top:0;z-index:70;background:rgba(247,243,236,.92);border-bottom:1px solid var(--ds-line);backdrop-filter:blur(16px);transition:.25s}.ds-header.is-scrolled{box-shadow:0 10px 35px rgba(20,15,10,.08)}.ds-nav-shell{display:flex;align-items:center;justify-content:space-between;min-height:78px}.ds-logo{display:flex;width:228px}.ds-logo img{width:100%;height:auto;display:block}.ds-menu{display:flex;align-items:center;gap:2px}.ds-menu>.menu-item{position:relative}.ds-menu a{display:inline-flex;align-items:center;min-height:42px;padding:0 13px;border-radius:999px;font-size:13px;font-weight:700;letter-spacing:.02em;color:#332b25;transition:.2s}.ds-menu a:hover{background:#ebe2d6}.ds-menu .nav-cta{margin-left:8px;padding:0 20px;background:var(--ds-ink);color:#fff}.ds-menu .nav-cta:hover{background:var(--ds-gold-dark);color:#fff}.ds-menu .dropdown{position:absolute;top:100%;left:0;min-width:210px;padding:8px;background:#fff;border:1px solid var(--ds-line);border-radius:12px;box-shadow:var(--ds-shadow);opacity:0;visibility:hidden;transform:translateY(8px);transition:.2s}.ds-menu .has-dropdown:hover>.dropdown{opacity:1;visibility:visible;transform:none}.ds-menu-toggle{display:none;width:44px;height:44px;border:0;border-radius:50%;background:var(--ds-ink);padding:12px}.ds-menu-toggle span{display:block;height:2px;background:#fff;margin:4px 0;transition:.2s}
.ds-kicker{display:inline-flex;align-items:center;gap:10px;color:#e2c98f;font-size:11px;font-weight:700;letter-spacing:.19em;text-transform:uppercase}.ds-kicker:before{content:"";width:28px;height:1px;background:currentColor}.ds-kicker.dark{color:var(--ds-gold-dark)}.ds-actions{display:flex;flex-wrap:wrap;align-items:center;gap:12px}.ds-btn{display:inline-flex;justify-content:center;align-items:center;min-height:48px;padding:0 22px;border:1px solid transparent;border-radius:999px;font-size:12px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;transition:transform .2s,background .2s,color .2s,border-color .2s}.ds-btn:hover{transform:translateY(-2px)}.ds-btn-gold{background:var(--ds-gold);color:#16110d;border-color:var(--ds-gold)}.ds-btn-gold:hover{background:#dfc17e}.ds-btn-dark{background:var(--ds-ink);color:#fff;border-color:var(--ds-ink)}.ds-btn-dark:hover{background:var(--ds-gold-dark);border-color:var(--ds-gold-dark)}.ds-btn-ghost{border-color:rgba(255,255,255,.6);color:#fff;background:rgba(0,0,0,.12);backdrop-filter:blur(8px)}.ds-btn-ghost:hover{background:#fff;color:var(--ds-ink)}.ds-text-link{display:inline-flex;align-items:center;gap:8px;font-size:12px;font-weight:700;letter-spacing:.075em;text-transform:uppercase;border-bottom:1px solid currentColor;padding-bottom:5px}.ds-text-link span{transition:.2s}.ds-text-link:hover span{transform:translate(3px,-3px)}.ds-text-link.light{color:#fff}
.ds-hero{position:relative;height:min(830px,calc(100vh - 114px));min-height:620px;background:#15110e;color:#fff;overflow:hidden}.ds-hero-track,.ds-hero-slide{position:absolute;inset:0}.ds-hero-slide{opacity:0;pointer-events:none;transition:opacity .8s}.ds-hero-slide.is-active{opacity:1;pointer-events:auto}.ds-hero-slide>img{width:100%;height:100%;object-fit:cover;transform:scale(1.025);transition:transform 7s linear}.ds-hero-slide.is-active>img{transform:scale(1.075)}.ds-hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(10,8,6,.8) 0%,rgba(10,8,6,.42) 48%,rgba(10,8,6,.1) 75%),linear-gradient(0deg,rgba(8,6,5,.55),transparent 50%)}.ds-hero-content{position:relative;z-index:2;display:flex;flex-direction:column;justify-content:center;height:100%;padding-bottom:55px}.ds-hero h1{max-width:850px;margin:18px 0 22px;color:#fff;font-size:clamp(58px,7.4vw,112px);line-height:.91}.ds-hero p{max-width:660px;margin:0 0 31px;color:#eee7de;font-size:clamp(17px,1.6vw,21px)}.ds-slider-controls{position:absolute;z-index:5;right:max(20px,calc((100vw - 1240px)/2));bottom:34px;display:flex;align-items:center;gap:15px}.ds-slider-controls>button{width:42px;height:42px;border:1px solid rgba(255,255,255,.4);border-radius:50%;background:rgba(0,0,0,.18);color:#fff}.ds-slider-dots{display:flex;gap:7px}.ds-slider-dots button{width:26px;height:3px;padding:0;border:0;background:rgba(255,255,255,.35)}.ds-slider-dots button.is-active{background:#fff}.ds-hero-note{position:absolute;left:max(20px,calc((100vw - 1240px)/2));bottom:33px;z-index:4;display:flex;align-items:center;gap:12px;font-size:11px;text-transform:uppercase;letter-spacing:.14em}.ds-hero-note span{color:#d7bd83}.ds-hero-note strong{color:#fff}
.ds-proofbar{background:#fff;border-bottom:1px solid var(--ds-line)}.ds-proofbar .container{display:grid;grid-template-columns:repeat(4,1fr)}.ds-proofbar .container>div{padding:23px 28px;border-right:1px solid var(--ds-line)}.ds-proofbar .container>div:first-child{border-left:1px solid var(--ds-line)}.ds-proofbar strong,.ds-proofbar span{display:block}.ds-proofbar strong{font-family:var(--ds-serif);font-size:23px}.ds-proofbar span{color:var(--ds-muted);font-size:11px;text-transform:uppercase;letter-spacing:.1em}
.ds-section{padding:var(--ds-section) 0}.ds-intro{background:var(--ds-paper)}.ds-intro-grid{display:grid;grid-template-columns:minmax(0,.82fr) minmax(0,1.18fr);gap:clamp(50px,7vw,100px);align-items:center}.ds-intro-copy h2,.ds-section-head h2,.ds-process h2,.ds-final-cta h2{font-size:clamp(40px,5vw,70px);line-height:1.02;margin:18px 0 22px}.ds-intro-copy>p{max-width:600px;color:var(--ds-muted);font-size:18px;margin-bottom:30px}.ds-editorial-stack{position:relative;height:610px}.ds-editorial-stack>img{position:absolute;display:block;object-fit:cover;border-radius:var(--ds-radius);box-shadow:var(--ds-shadow)}.ds-editorial-stack>img:first-child{right:0;top:0;width:68%;height:83%}.ds-editorial-stack>img:nth-child(2){left:0;bottom:0;width:48%;height:54%;border:10px solid var(--ds-paper)}.ds-stack-caption{position:absolute;right:3%;bottom:2%;width:245px;padding:18px 20px;border-radius:12px;background:var(--ds-ink);color:#fff}.ds-stack-caption strong,.ds-stack-caption span{display:block}.ds-stack-caption strong{font-family:var(--ds-serif);font-size:20px}.ds-stack-caption span{margin-top:4px;color:#cfc2b4;font-size:11px}
.ds-section-head{display:flex;justify-content:space-between;align-items:flex-end;gap:40px;margin-bottom:42px}.ds-section-head>div{max-width:850px}.ds-section-head h2{margin-bottom:0;color:#fff}.ds-section-head.dark h2{color:var(--ds-ink)}.ds-section-head>p{max-width:350px;color:#cfc4b7}.ds-packages-section,.ds-location-section,.ds-process,.ds-team-band,.ds-addons-section{background:var(--ds-ink);color:#fff}.ds-package-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.ds-package-grid.compact{grid-template-columns:repeat(3,1fr)}.ds-package-card{overflow:hidden;border:1px solid var(--ds-dark-line);border-radius:var(--ds-radius);background:#211b16}.ds-package-image{position:relative;display:block;aspect-ratio:4/3;overflow:hidden}.ds-package-image img{width:100%;height:100%;object-fit:cover;transition:transform .55s}.ds-package-card:hover .ds-package-image img{transform:scale(1.05)}.ds-package-image>span{position:absolute;left:16px;top:16px;padding:7px 11px;border-radius:999px;background:rgba(18,14,11,.72);color:#fff;font-size:9px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;backdrop-filter:blur(8px)}.ds-package-body{padding:24px}.ds-package-title{display:flex;justify-content:space-between;align-items:start;gap:14px}.ds-package-title h3{margin:0;color:#fff;font-size:30px}.ds-package-title strong{color:#e2c88c;font-family:var(--ds-serif);font-size:25px}.ds-package-body>p{min-height:70px;color:#cfc4b7;font-size:14px}.ds-package-body ul{list-style:none;margin:18px 0;padding:0;border-top:1px solid var(--ds-dark-line)}.ds-package-body li{padding:8px 0;border-bottom:1px solid var(--ds-dark-line);color:#eee8e0;font-size:12px}.ds-package-body li:before{content:"✓";margin-right:8px;color:#d9b96f}.ds-card-actions{display:flex;justify-content:space-between;gap:14px;margin-top:20px}.ds-card-actions a{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.07em;color:#fff}.ds-card-actions a:last-child{color:#e0c27b}
.ds-dresses,.ds-portfolio-preview,.ds-reviews,.ds-related{background:#fff}.ds-dress-rail{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.ds-dress-card{position:relative;display:block;overflow:hidden;border-radius:var(--ds-radius);background:#1d1712;aspect-ratio:3/4}.ds-dress-card img{width:100%;height:100%;object-fit:cover;transition:.55s}.ds-dress-card:after{content:"";position:absolute;inset:35% 0 0;background:linear-gradient(transparent,rgba(13,10,8,.85))}.ds-dress-card:hover img{transform:scale(1.055)}.ds-dress-card>div{position:absolute;z-index:2;left:0;right:0;bottom:0;padding:21px;color:#fff}.ds-dress-card span{font-size:9px;text-transform:uppercase;letter-spacing:.14em}.ds-dress-card h3{margin:5px 0 0;color:#fff;font-size:25px}.ds-dress-card p{margin:2px 0 0;color:#d9cfc4;font-size:12px}
.ds-location-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}.ds-location-card{position:relative;min-height:440px;overflow:hidden;border-radius:var(--ds-radius)}.ds-location-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:.6s}.ds-location-card:hover img{transform:scale(1.05)}.ds-location-card:after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(13,10,8,.88),transparent 65%)}.ds-location-card>div{position:absolute;z-index:2;left:0;right:0;bottom:0;padding:28px}.ds-location-card span{font-size:10px;letter-spacing:.13em;text-transform:uppercase;color:#e2c98d}.ds-location-card h3{margin:6px 0;color:#fff;font-size:36px}.ds-location-card p{max-width:450px;margin:0;color:#e4dbd1;font-size:13px}
.ds-masonry{display:grid;grid-template-columns:repeat(5,1fr);grid-auto-rows:180px;gap:10px}.ds-masonry a{overflow:hidden;border-radius:12px}.ds-masonry img{width:100%;height:100%;object-fit:cover;transition:.5s}.ds-masonry a:hover img{transform:scale(1.05)}.ds-masonry .item-1,.ds-masonry .item-4{grid-row:span 2}.ds-masonry .item-2{grid-column:span 2}.ds-process-grid{display:grid;grid-template-columns:minmax(0,.75fr) minmax(0,1.25fr);gap:80px;align-items:start}.ds-process-grid>div{position:sticky;top:130px}.ds-process-grid>div p{color:#cfc4b8;font-size:17px;margin-bottom:28px}.ds-process ol{list-style:none;margin:0;padding:0;border-top:1px solid var(--ds-dark-line)}.ds-process li{display:grid;grid-template-columns:60px 1fr;gap:22px;padding:28px 0;border-bottom:1px solid var(--ds-dark-line)}.ds-process li>span{color:#d6b66e;font-size:12px;font-weight:700}.ds-process h3{margin:0 0 6px;color:#fff;font-size:30px}.ds-process li p{margin:0;color:#cfc5bb}.ds-review-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:14px}.ds-review-grid.three{grid-template-columns:repeat(3,1fr)}.ds-review-grid blockquote{display:flex;flex-direction:column;min-height:300px;margin:0;padding:24px;border:1px solid var(--ds-line);border-radius:var(--ds-radius);background:var(--ds-paper)}.ds-stars{color:#b28839;letter-spacing:2px}.ds-review-grid blockquote>p{font-family:var(--ds-serif);font-size:20px;line-height:1.45}.ds-review-grid footer{margin-top:auto}.ds-review-grid footer strong,.ds-review-grid footer span{display:block}.ds-review-grid footer span{color:var(--ds-muted);font-size:12px}.ds-final-cta{padding:76px 0;background:#100d0b;color:#fff}.ds-final-cta .container{display:flex;justify-content:space-between;align-items:flex-end;gap:45px}.ds-final-cta h2{max-width:820px;margin-bottom:0;color:#fff}
.ds-page-hero{padding:clamp(100px,12vw,170px) 0 90px;background:var(--ds-ink);color:#fff}.ds-page-hero.compact{padding:92px 0 72px}.ds-page-hero h1{max-width:1000px;margin:18px 0 22px;color:#fff;font-size:clamp(55px,7vw,96px);line-height:.97}.ds-page-hero p{max-width:750px;margin:0;color:#d9d0c6;font-size:18px}.catalog-hero,.portfolio-hero,.location-hero,.about-hero,.contact-hero,.booking-hero{position:relative;background-image:linear-gradient(90deg,rgba(16,13,11,.9),rgba(16,13,11,.52)),url('../uploads/hero/hero-03.webp');background-size:cover;background-position:center}.catalog-hero{background-image:linear-gradient(90deg,rgba(16,13,11,.88),rgba(16,13,11,.45)),url('../uploads/hero/hero-04.webp')}.location-hero{background-image:linear-gradient(90deg,rgba(16,13,11,.9),rgba(16,13,11,.42)),url('../uploads/locations/desert.webp')}.portfolio-hero{background-image:linear-gradient(90deg,rgba(16,13,11,.86),rgba(16,13,11,.36)),url('../uploads/portfolio/single-flying-dress/single-flying-dress-018.webp')}.about-hero{background-image:linear-gradient(90deg,rgba(16,13,11,.9),rgba(16,13,11,.42)),url('../uploads/locations/about.webp')}.contact-hero{background-image:linear-gradient(90deg,rgba(16,13,11,.9),rgba(16,13,11,.48)),url('../uploads/locations/downtown.webp')}.booking-hero{background-image:linear-gradient(90deg,rgba(16,13,11,.92),rgba(16,13,11,.44)),url('../uploads/hero/hero-02.webp')}
.ds-package-list{display:flex;flex-direction:column;gap:30px}.ds-package-row{display:grid;grid-template-columns:.82fr 1.18fr;min-height:500px;border:1px solid var(--ds-line);border-radius:var(--ds-radius);overflow:hidden;background:#fff}.ds-package-row:nth-child(even){grid-template-columns:1.18fr .82fr}.ds-package-row:nth-child(even) .ds-package-row-media{order:2}.ds-package-row-media{position:relative;min-height:470px}.ds-package-row-media img{width:100%;height:100%;object-fit:cover}.ds-package-row-media>span{position:absolute;left:20px;top:20px;padding:8px 12px;border-radius:999px;background:rgba(18,14,11,.76);color:#fff;font-size:10px;text-transform:uppercase;letter-spacing:.12em}.ds-package-row-copy{padding:clamp(30px,5vw,65px)}.ds-package-row-head{display:flex;justify-content:space-between;gap:30px}.ds-package-row-head small{color:var(--ds-gold-dark);font-weight:700}.ds-package-row h2{margin:6px 0 15px;font-size:48px}.ds-price{text-align:right}.ds-price strong,.ds-price span{display:block}.ds-price strong{font-family:var(--ds-serif);font-size:38px}.ds-price span{color:var(--ds-muted);font-size:11px}.ds-package-row .lead{color:var(--ds-muted);font-size:18px}.ds-package-facts{display:flex;flex-wrap:wrap;gap:8px;margin:22px 0}.ds-package-facts span,.ds-dress-tags span{padding:8px 11px;border-radius:999px;background:var(--ds-cream);font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.06em}.ds-check-list{list-style:none;padding:0;margin:24px 0}.ds-check-list li{position:relative;padding:8px 0 8px 27px;border-bottom:1px solid var(--ds-line)}.ds-check-list li:before{content:"✓";position:absolute;left:0;color:var(--ds-gold-dark);font-weight:700}.ds-check-list.large li{font-size:17px}.ds-addon-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}.ds-addon-grid article{display:flex;justify-content:space-between;gap:24px;padding:24px;border:1px solid var(--ds-dark-line);border-radius:14px;background:rgba(255,255,255,.035)}.ds-addon-grid h3{margin:0 0 4px;color:#fff;font-size:22px}.ds-addon-grid p{margin:0;color:#cfc5bb;font-size:13px}.ds-addon-grid article>strong{color:#e2c680;font-family:var(--ds-serif);font-size:23px;text-align:right}.ds-addon-grid small{display:block;color:#bcb1a6;font:10px var(--ds-sans)}
.ds-detail-hero{position:relative;min-height:680px;display:flex;align-items:flex-end;color:#fff}.ds-detail-hero>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.ds-detail-shade{position:absolute;inset:0;background:linear-gradient(0deg,rgba(11,8,6,.88),rgba(11,8,6,.12) 70%)}.ds-detail-hero .container{position:relative;z-index:2;padding-bottom:70px}.ds-detail-hero h1{font-size:clamp(70px,10vw,138px);line-height:.84;margin:15px 0;color:#fff}.ds-detail-hero p{max-width:700px;font-size:20px}.ds-detail-layout{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:80px}.ds-detail-copy h2{font-size:45px;line-height:1.18;margin:18px 0 35px}.ds-detail-copy h3{font-size:28px;margin-top:40px}.ds-detail-metrics{display:grid;grid-template-columns:repeat(4,1fr);border-block:1px solid var(--ds-line)}.ds-detail-metrics div{padding:22px 10px;border-right:1px solid var(--ds-line)}.ds-detail-metrics div:last-child{border:0}.ds-detail-metrics strong,.ds-detail-metrics span{display:block}.ds-detail-metrics strong{font-family:var(--ds-serif);font-size:32px}.ds-detail-metrics span{color:var(--ds-muted);font-size:10px;text-transform:uppercase}.ds-note{padding:24px;border-radius:14px;background:var(--ds-cream)}.ds-note p{margin:5px 0 0}.ds-booking-card{position:sticky;top:120px;align-self:start;padding:30px;border-radius:var(--ds-radius);background:var(--ds-ink);color:#fff;box-shadow:var(--ds-shadow)}.ds-booking-card>span,.ds-booking-card>small{display:block;color:#cfc4b8}.ds-booking-card>strong{display:block;margin:5px 0;color:#e0c47f;font-family:var(--ds-serif);font-size:52px}.ds-booking-card dl{margin:25px 0;border-top:1px solid var(--ds-dark-line)}.ds-booking-card dl>div{display:flex;justify-content:space-between;padding:12px 0;border-bottom:1px solid var(--ds-dark-line)}.ds-booking-card dt{color:#cfc4b8}.ds-booking-card .ds-btn{width:100%;margin-bottom:20px}
.ds-filterbar{position:sticky;top:85px;z-index:20;display:flex;flex-wrap:wrap;gap:8px;margin-bottom:35px;padding:12px;border:1px solid var(--ds-line);border-radius:999px;background:rgba(247,243,236,.94);backdrop-filter:blur(12px)}.ds-filterbar button,.ds-filterbar select{min-height:38px;padding:0 16px;border:0;border-radius:999px;background:transparent;color:var(--ds-ink);font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.06em}.ds-filterbar button.is-active{background:var(--ds-ink);color:#fff}.ds-filterbar select{margin-left:auto;background:#fff}.ds-catalog-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}.ds-catalog-card{transition:.25s}.ds-catalog-card.is-hidden{display:none}.ds-catalog-card>a{position:relative;display:block;aspect-ratio:3/4;overflow:hidden;border-radius:var(--ds-radius);background:#ddd}.ds-catalog-card img{width:100%;height:100%;object-fit:cover;transition:.55s}.ds-catalog-card:hover img{transform:scale(1.05)}.ds-catalog-hover{position:absolute;right:14px;bottom:14px;padding:8px 12px;border-radius:999px;background:rgba(18,14,11,.75);color:#fff;font-size:10px;text-transform:uppercase;opacity:0;transform:translateY(8px);transition:.2s}.ds-catalog-card:hover .ds-catalog-hover{opacity:1;transform:none}.ds-catalog-card>div{display:flex;justify-content:space-between;gap:12px;padding:14px 4px}.ds-catalog-card span,.ds-catalog-card p{color:var(--ds-muted);font-size:10px;text-transform:uppercase;letter-spacing:.09em}.ds-catalog-card h2{margin:3px 0 0;font-size:24px}.ds-catalog-card p{margin:2px 0}.ds-catalog-card>div>a{display:flex;justify-content:center;align-items:center;width:38px;height:38px;border-radius:50%;background:var(--ds-ink);color:#fff}.ds-dress-detail-grid{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr);gap:70px}.ds-dress-gallery{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}.ds-dress-gallery button{padding:0;border:0;border-radius:var(--ds-radius);overflow:hidden;background:#eee;cursor:zoom-in}.ds-dress-gallery button:first-child{grid-row:span 2}.ds-dress-gallery img{width:100%;height:100%;min-height:420px;object-fit:cover}.ds-dress-info{position:sticky;top:130px;align-self:start}.ds-dress-info h1{font-size:58px;line-height:1;margin:16px 0}.ds-dress-tags{display:flex;gap:8px;margin-bottom:25px}.ds-dress-info>p{color:var(--ds-muted);font-size:17px}.ds-dress-availability{margin:28px 0;padding:20px;border-radius:14px;background:var(--ds-cream)}.ds-dress-availability p{margin:5px 0 0;font-size:13px}.ds-dress-info>.ds-btn{width:100%;margin-bottom:20px}
.ds-location-list{display:flex;flex-direction:column;gap:90px}.ds-location-row{display:grid;grid-template-columns:1.05fr .95fr;gap:70px;align-items:center}.ds-location-row.reverse{grid-template-columns:.95fr 1.05fr}.ds-location-row.reverse .ds-location-row-image{order:2}.ds-location-row-image{position:relative;height:590px}.ds-location-row-image img{width:100%;height:100%;object-fit:cover;border-radius:var(--ds-radius)}.ds-location-row-image span{position:absolute;right:16px;top:16px;display:flex;align-items:center;justify-content:center;width:54px;height:54px;border-radius:50%;background:rgba(18,14,11,.75);color:#fff;font-family:var(--ds-serif);font-size:22px}.ds-location-row h2{font-size:58px;line-height:1;margin:14px 0}.ds-location-row .lead{font-size:21px}.ds-location-row>div>p:not(.lead){color:var(--ds-muted)}.ds-location-price{display:flex;justify-content:space-between;max-width:430px;margin:25px 0;padding:16px 0;border-block:1px solid var(--ds-line)}.ds-location-price span{color:var(--ds-muted)}.ds-location-price strong{font-family:var(--ds-serif);font-size:20px}
.ds-album-grid{display:grid;grid-template-columns:repeat(12,1fr);grid-auto-rows:180px;gap:14px}.ds-album-card{position:relative;grid-column:span 6;grid-row:span 3;overflow:hidden;border-radius:var(--ds-radius);color:#fff}.ds-album-card:nth-child(3n){grid-column:span 4}.ds-album-card:nth-child(4n){grid-column:span 8}.ds-album-card img{width:100%;height:100%;object-fit:cover;transition:.6s}.ds-album-card:hover img{transform:scale(1.05)}.ds-album-card:after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(13,10,8,.88),transparent 70%)}.ds-album-card>div{position:absolute;z-index:2;left:0;right:0;bottom:0;padding:28px}.ds-album-card span{font-size:10px;letter-spacing:.12em;text-transform:uppercase}.ds-album-card h2{margin:5px 0;color:#fff;font-size:40px}.ds-album-card p{max-width:480px;margin:0 0 10px;color:#ddd2c8;font-size:13px}.ds-album-card strong{font-size:10px;text-transform:uppercase;letter-spacing:.1em}.ds-gallery-grid{columns:4 260px;column-gap:12px}.ds-gallery-grid button{display:block;width:100%;padding:0;margin:0 0 12px;border:0;border-radius:12px;overflow:hidden;background:#eee;cursor:zoom-in;break-inside:avoid}.ds-gallery-grid img{display:block;width:100%;height:auto;transition:.4s}.ds-gallery-grid button:hover img{transform:scale(1.025)}.ds-lightbox{position:fixed;inset:0;z-index:200;display:flex;align-items:center;justify-content:center;background:rgba(8,6,5,.96);opacity:0;visibility:hidden;transition:.2s}.ds-lightbox.is-open{opacity:1;visibility:visible}.ds-lightbox img{max-width:min(92vw,1400px);max-height:90vh;object-fit:contain}.ds-lightbox button{position:absolute;width:46px;height:46px;border:1px solid rgba(255,255,255,.45);border-radius:50%;background:rgba(0,0,0,.2);color:#fff;font-size:25px}.ds-lightbox [data-lightbox-close]{right:24px;top:24px}.ds-lightbox [data-lightbox-prev]{left:24px}.ds-lightbox [data-lightbox-next]{right:24px}
.ds-about-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:80px;align-items:start}.ds-about-image{position:relative;height:720px}.ds-about-image img{width:100%;height:100%;object-fit:cover;border-radius:var(--ds-radius)}.ds-about-image>div{position:absolute;right:-25px;bottom:28px;padding:22px 25px;border-radius:14px;background:var(--ds-ink);color:#fff}.ds-about-image strong,.ds-about-image span{display:block}.ds-about-image strong{font-family:var(--ds-serif);font-size:33px;color:#dfc27d}.ds-about-image span{font-size:11px;text-transform:uppercase;letter-spacing:.08em}.ds-about-copy h2{font-size:52px;line-height:1.08}.rich-content h2{font-size:30px;margin-top:34px}.rich-content p{color:var(--ds-muted);font-size:17px}.ds-values{margin-top:35px;border-top:1px solid var(--ds-line)}.ds-values>div{display:grid;grid-template-columns:46px 190px 1fr;gap:18px;padding:20px 0;border-bottom:1px solid var(--ds-line)}.ds-values strong{color:var(--ds-gold-dark)}.ds-values h3{margin:0;font-size:22px}.ds-values p{margin:0;color:var(--ds-muted);font-size:13px}.ds-capability-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}.ds-capability-grid article{padding:28px;border:1px solid var(--ds-dark-line);border-radius:var(--ds-radius);background:rgba(255,255,255,.035)}.ds-capability-grid span{font-size:10px;text-transform:uppercase;letter-spacing:.12em;color:#dfc17c}.ds-capability-grid h3{font-size:28px;color:#fff}.ds-capability-grid p{color:#cfc4ba}
.ds-contact-layout{display:grid;grid-template-columns:.85fr 1.15fr;gap:70px}.ds-contact-info h2{font-size:50px;line-height:1.08}.ds-contact-cards{display:flex;flex-direction:column;margin-top:35px;border-top:1px solid var(--ds-line)}.ds-contact-cards>a,.ds-contact-cards>div{display:grid;grid-template-columns:90px 1fr;gap:4px 20px;padding:18px 0;border-bottom:1px solid var(--ds-line)}.ds-contact-cards span{grid-row:span 2;color:var(--ds-gold-dark);font-size:10px;text-transform:uppercase;letter-spacing:.1em}.ds-contact-cards strong{font-size:18px}.ds-contact-cards small{color:var(--ds-muted)}.ds-contact-note{margin-top:25px;padding:20px;border-radius:14px;background:var(--ds-cream)}.ds-contact-note p{margin:4px 0}.ds-contact-form{padding:35px;border:1px solid var(--ds-line);border-radius:var(--ds-radius);background:#fff;box-shadow:var(--ds-shadow)}.ds-contact-form label,.ds-booking-form label{display:block;font-size:12px;font-weight:700}.ds-contact-form input,.ds-contact-form select,.ds-contact-form textarea,.ds-booking-form input:not([type=radio]):not([type=checkbox]),.ds-booking-form select,.ds-booking-form textarea{width:100%;margin-top:7px;padding:13px 14px;border:1px solid var(--ds-line);border-radius:10px;background:#fcfaf7;color:var(--ds-ink);outline:none}.ds-contact-form input:focus,.ds-contact-form textarea:focus,.ds-booking-form input:focus,.ds-booking-form select:focus,.ds-booking-form textarea:focus{border-color:var(--ds-gold-dark);box-shadow:0 0 0 3px rgba(158,125,66,.12)}.ds-field-row{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}.ds-contact-form>label,.ds-booking-step>label{margin-top:15px}.ds-check{display:flex!important;align-items:flex-start;gap:10px}.ds-check input{width:18px!important;margin-top:3px!important}.ds-check span{font-weight:400}.ds-check a{text-decoration:underline}.ds-contact-form .ds-btn{margin-top:20px}.ds-map iframe{display:block;width:100%;border:0;filter:grayscale(.35) contrast(1.05)}
.ds-booking-section{background:#f1eadf}.ds-booking-progress{display:grid;grid-template-columns:repeat(4,1fr);max-width:820px;margin:0 auto 28px}.ds-booking-progress button{display:flex;align-items:center;justify-content:center;gap:9px;padding:13px;border:0;border-bottom:2px solid #d9cec0;background:transparent;color:#7d746a;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.07em}.ds-booking-progress button span{display:flex;align-items:center;justify-content:center;width:26px;height:26px;border-radius:50%;background:#ded4c7}.ds-booking-progress button.is-active{border-color:var(--ds-ink);color:var(--ds-ink)}.ds-booking-progress button.is-active span{background:var(--ds-ink);color:#fff}.ds-booking-error{max-width:900px;margin:0 auto 22px}.ds-booking-shell{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:22px;align-items:start}.ds-booking-steps{padding:35px;border-radius:var(--ds-radius);background:#fff;box-shadow:var(--ds-shadow)}.ds-booking-step{display:none}.ds-booking-step.is-active{display:block}.ds-step-head{margin-bottom:28px}.ds-step-head>span{color:var(--ds-gold-dark);font-size:10px;text-transform:uppercase;letter-spacing:.14em;font-weight:700}.ds-step-head h2{font-size:42px;line-height:1.08;margin:8px 0}.ds-step-head p{margin:0;color:var(--ds-muted)}.ds-choice-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;max-height:720px;overflow:auto;padding:2px}.ds-choice-grid.dresses{grid-template-columns:repeat(4,1fr);max-height:520px}.ds-choice-grid.locations{grid-template-columns:repeat(3,1fr);max-height:none}.ds-choice-card{position:relative;border:1px solid var(--ds-line);border-radius:14px;overflow:hidden;background:#fff;cursor:pointer;transition:.2s}.ds-choice-card:has(input:checked){border-color:var(--ds-ink);box-shadow:0 0 0 2px var(--ds-ink)}.ds-choice-card input{position:absolute;top:10px;right:10px;z-index:2;width:20px;height:20px;accent-color:var(--ds-ink)}.ds-choice-card img{display:block;width:100%;aspect-ratio:4/3;object-fit:cover}.ds-choice-grid.dresses img{aspect-ratio:3/4}.ds-choice-card>div{padding:14px}.ds-choice-card span{color:var(--ds-gold-dark);font-size:8px;text-transform:uppercase;letter-spacing:.1em}.ds-choice-card h3{font-size:22px;margin:3px 0}.ds-choice-card p{margin:0;color:var(--ds-muted);font-size:11px}.ds-choice-card strong{display:block;margin-top:8px;font-family:var(--ds-serif);font-size:22px}.ds-choice-card small{display:block;color:var(--ds-muted);font:9px var(--ds-sans)}.ds-subheading{font-size:24px;margin:30px 0 12px}.ds-addon-choice-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-bottom:24px}.ds-addon-choice-grid label{display:grid;grid-template-columns:22px 1fr auto;gap:10px;align-items:start;padding:16px;border:1px solid var(--ds-line);border-radius:12px;cursor:pointer}.ds-addon-choice-grid label:has(input:checked){border-color:var(--ds-gold-dark);background:#faf5ea}.ds-addon-choice-grid input{width:18px;height:18px;accent-color:var(--ds-ink)}.ds-addon-choice-grid strong,.ds-addon-choice-grid small{display:block}.ds-addon-choice-grid small{color:var(--ds-muted);font-weight:400;line-height:1.4}.ds-addon-choice-grid b{color:var(--ds-gold-dark)}.ds-toggle-field{display:flex!important;align-items:center;gap:12px;margin-top:0!important;padding:14px;border:1px solid var(--ds-line);border-radius:10px;background:#fcfaf7}.ds-toggle-field input{width:20px;height:20px;accent-color:var(--ds-ink)}.ds-toggle-field strong,.ds-toggle-field small{display:block}.ds-toggle-field small{color:var(--ds-muted);font-weight:400}.ds-step-actions{display:flex;justify-content:space-between;align-items:center;margin-top:30px;padding-top:20px;border-top:1px solid var(--ds-line)}.ds-step-actions>button:not(.ds-btn){border:0;background:transparent;font-size:12px;font-weight:700}.ds-booking-summary{position:sticky;top:110px;padding:28px;border-radius:var(--ds-radius);background:var(--ds-ink);color:#fff;box-shadow:var(--ds-shadow)}.ds-booking-summary>span{color:#d8b96f;font-size:10px;text-transform:uppercase;letter-spacing:.14em}.ds-booking-summary h2{font-size:32px;margin:7px 0 22px;color:#fff}.ds-booking-summary dl{margin:0;border-top:1px solid var(--ds-dark-line)}.ds-booking-summary dl>div{display:flex;justify-content:space-between;gap:18px;padding:12px 0;border-bottom:1px solid var(--ds-dark-line)}.ds-booking-summary dt{color:#c4b9ad}.ds-booking-summary dd{margin:0;text-align:right}.ds-summary-total{margin-top:22px;padding-top:5px}.ds-summary-total span,.ds-summary-total strong,.ds-summary-total small{display:block}.ds-summary-total strong{color:#dfc17d;font-family:var(--ds-serif);font-size:46px}.ds-summary-total small,.ds-booking-summary>p{color:#bfb3a8}.ds-booking-success{max-width:780px;margin:auto;padding:55px;border:1px solid var(--ds-line);border-radius:var(--ds-radius);background:#fff;text-align:center;box-shadow:var(--ds-shadow)}.ds-booking-success>span{color:var(--ds-gold-dark);font-size:11px;text-transform:uppercase;letter-spacing:.12em}.ds-booking-success h2{font-size:64px;margin:10px}.ds-booking-success p{font-size:18px;color:var(--ds-muted)}.ds-booking-success .ds-actions{justify-content:center}
.reveal-on-scroll{opacity:0;transform:translateY(25px);transition:opacity .75s,transform .75s}.reveal-on-scroll.is-visible{opacity:1;transform:none}
/* Floating contact overrides */
.floating-contact{position:fixed;left:20px;bottom:20px;z-index:120}.floating-contact-actions{position:absolute;left:0;bottom:54px;display:flex;flex-direction:column-reverse;gap:8px;opacity:0;visibility:hidden;transform:translateY(10px);transition:.2s}.floating-contact.is-open .floating-contact-actions{opacity:1;visibility:visible;transform:none}.floating-contact-action,.floating-contact-toggle{display:flex;align-items:center;justify-content:center;width:44px;height:44px;border:0;border-radius:50%;box-shadow:0 9px 24px rgba(0,0,0,.2);color:#fff}.floating-contact-action svg,.floating-contact-toggle svg{width:20px;height:20px;fill:#fff}.floating-contact-toggle{position:relative;background:var(--ds-ink);cursor:pointer}.floating-contact-toggle .icon-close{display:none}.floating-contact.is-open .icon-open{display:none}.floating-contact.is-open .icon-close{display:block}.floating-contact-pulse{position:absolute;inset:-5px;border:1px solid rgba(200,169,107,.6);border-radius:50%;animation:dsPulse 2s infinite}.is-whatsapp{background:#25D366}.is-instagram{background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045)}.is-phone{background:#0A84FF}.is-maps{background:#4285F4}.is-email{background:#EA4335}@keyframes dsPulse{0%{transform:scale(.8);opacity:1}100%{transform:scale(1.35);opacity:0}}
/* Admin brand adaptation */
.admin-logo-box img{max-width:180px;max-height:58px;object-fit:contain}.admin-body .sidebar{background:#17130f}.admin-body .sidebar-group>span{color:#c8a96b}.admin-body .admin-nav a.is-active,.admin-body .admin-nav a:hover{background:#2a2119;color:#fff}.admin-body .btn,.admin-body .small-btn{background:#17130f}.admin-body .v22-admin-hero{background:linear-gradient(135deg,#17130f,#3a2d21)}
@media(max-width:1100px){.ds-menu a{padding-inline:9px}.ds-logo{width:195px}.ds-package-grid{grid-template-columns:repeat(2,1fr)}.ds-dress-rail,.ds-catalog-grid{grid-template-columns:repeat(3,1fr)}.ds-review-grid{grid-template-columns:repeat(3,1fr)}.ds-review-grid blockquote:nth-child(n+4){display:none}.ds-choice-grid{grid-template-columns:repeat(2,1fr)}.ds-choice-grid.dresses{grid-template-columns:repeat(3,1fr)}.ds-booking-shell{grid-template-columns:1fr 300px}.ds-about-grid,.ds-contact-layout{gap:45px}.ds-capability-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:900px){.ds-topbar-links a:first-child{display:none}.ds-menu-toggle{display:block}.ds-menu{position:fixed;left:16px;right:16px;top:116px;display:flex;flex-direction:column;align-items:stretch;padding:14px;border:1px solid var(--ds-line);border-radius:16px;background:#fff;box-shadow:var(--ds-shadow);opacity:0;visibility:hidden;transform:translateY(-10px);transition:.2s}.ds-menu.is-open{opacity:1;visibility:visible;transform:none}.ds-menu>.menu-item,.ds-menu>.menu-item>a{display:block;width:100%}.ds-menu a{padding:10px 12px}.ds-menu .nav-cta{margin:7px 0 0;text-align:center}.ds-hero{height:720px}.ds-hero h1{font-size:72px}.ds-proofbar .container{grid-template-columns:repeat(2,1fr)}.ds-intro-grid,.ds-process-grid,.ds-about-grid,.ds-contact-layout,.ds-detail-layout,.ds-dress-detail-grid,.ds-location-row,.ds-location-row.reverse{grid-template-columns:1fr}.ds-editorial-stack{height:540px}.ds-process-grid>div,.ds-booking-card,.ds-dress-info{position:static}.ds-location-row.reverse .ds-location-row-image{order:0}.ds-location-row-image{height:520px}.ds-masonry{grid-template-columns:repeat(3,1fr)}.ds-masonry .item-2{grid-column:span 1}.ds-review-grid{grid-template-columns:repeat(2,1fr)}.ds-package-row,.ds-package-row:nth-child(even){grid-template-columns:1fr}.ds-package-row:nth-child(even) .ds-package-row-media{order:0}.ds-package-row-media{min-height:420px}.ds-dress-rail,.ds-catalog-grid{grid-template-columns:repeat(2,1fr)}.ds-album-card,.ds-album-card:nth-child(3n),.ds-album-card:nth-child(4n){grid-column:span 6}.ds-about-image{height:600px}.ds-booking-shell{grid-template-columns:1fr}.ds-booking-summary{position:static;order:-1}.ds-choice-grid.locations{grid-template-columns:repeat(2,1fr)}.ds-final-cta .container{align-items:flex-start;flex-direction:column}.ds-detail-metrics{grid-template-columns:repeat(2,1fr)}.ds-detail-metrics div:nth-child(2){border-right:0}.ds-detail-metrics div:nth-child(-n+2){border-bottom:1px solid var(--ds-line)}}
@media(max-width:620px){.ds-site .container{width:min(100% - 28px,1240px)}.ds-topbar .container{justify-content:center}.ds-topbar .container>span{display:none}.ds-topbar-links{width:100%;justify-content:space-between}.ds-nav-shell{min-height:68px}.ds-logo{width:180px}.ds-menu{top:103px}.ds-hero{min-height:680px;height:calc(100svh - 104px)}.ds-hero-overlay{background:linear-gradient(0deg,rgba(10,8,6,.83),rgba(10,8,6,.18) 75%)}.ds-hero-content{justify-content:flex-end;padding-bottom:120px}.ds-hero h1{font-size:clamp(48px,15vw,70px)}.ds-hero p{font-size:16px}.ds-hero-note{bottom:82px}.ds-slider-controls{left:14px;right:auto;bottom:22px}.ds-proofbar .container>div{padding:17px 12px}.ds-proofbar strong{font-size:19px}.ds-section{padding:70px 0}.ds-intro-copy h2,.ds-section-head h2,.ds-process h2,.ds-final-cta h2{font-size:40px}.ds-intro-grid{gap:40px}.ds-editorial-stack{height:440px}.ds-stack-caption{width:210px}.ds-section-head{align-items:flex-start;flex-direction:column;gap:18px}.ds-package-grid{grid-template-columns:1fr}.ds-package-body>p{min-height:auto}.ds-dress-rail{display:flex;overflow:auto;scroll-snap-type:x mandatory}.ds-dress-card{min-width:78vw;scroll-snap-align:start}.ds-location-grid{grid-template-columns:1fr}.ds-location-card{min-height:390px}.ds-masonry{grid-template-columns:repeat(2,1fr);grid-auto-rows:150px}.ds-review-grid,.ds-review-grid.three{display:flex;overflow:auto}.ds-review-grid blockquote,.ds-review-grid blockquote:nth-child(n+4){display:flex;min-width:82vw}.ds-page-hero{padding:90px 0 70px}.ds-page-hero h1{font-size:48px}.ds-page-hero p{font-size:16px}.ds-package-row-media{min-height:320px}.ds-package-row-copy{padding:26px}.ds-package-row-head{flex-direction:column}.ds-price{text-align:left}.ds-package-row h2{font-size:40px}.ds-addon-grid{grid-template-columns:1fr}.ds-detail-hero{min-height:560px}.ds-detail-hero h1{font-size:70px}.ds-detail-layout{gap:40px}.ds-detail-copy h2{font-size:35px}.ds-detail-metrics{grid-template-columns:repeat(2,1fr)}.ds-filterbar{top:74px;border-radius:16px}.ds-filterbar button{display:none}.ds-filterbar button.is-active{display:block}.ds-filterbar select{width:100%;margin:0}.ds-catalog-grid{grid-template-columns:repeat(2,1fr);gap:10px}.ds-catalog-card h2{font-size:19px}.ds-dress-gallery{grid-template-columns:1fr}.ds-dress-gallery button:first-child{grid-row:auto}.ds-dress-gallery img{min-height:450px}.ds-dress-info h1{font-size:45px}.ds-location-list{gap:60px}.ds-location-row{gap:28px}.ds-location-row-image{height:480px}.ds-location-row h2{font-size:46px}.ds-album-grid{display:block}.ds-album-card,.ds-album-card:nth-child(n){display:block;height:480px;margin-bottom:14px}.ds-album-card h2{font-size:34px}.ds-gallery-grid{columns:2 140px}.ds-about-image{height:500px}.ds-about-image>div{right:12px}.ds-about-copy h2,.ds-contact-info h2{font-size:40px}.ds-values>div{grid-template-columns:35px 1fr}.ds-values p{grid-column:2}.ds-capability-grid{grid-template-columns:1fr}.ds-contact-form{padding:22px}.ds-field-row{grid-template-columns:1fr}.ds-booking-progress button{font-size:0}.ds-booking-progress button span{font-size:11px}.ds-booking-steps{padding:20px}.ds-step-head h2{font-size:34px}.ds-choice-grid,.ds-choice-grid.locations,.ds-choice-grid.dresses{grid-template-columns:repeat(2,1fr);max-height:560px}.ds-choice-card h3{font-size:18px}.ds-choice-card>div{padding:10px}.ds-addon-choice-grid{grid-template-columns:1fr}.ds-step-actions{gap:10px}.ds-step-actions .ds-btn{padding-inline:15px}.ds-booking-success{padding:35px 22px}.ds-booking-success h2{font-size:42px}.floating-contact{left:14px;bottom:14px}}

/* Dubai Shootings admin operations */
.dubai-login-box{max-width:440px;padding:42px}.dubai-login-logo{width:min(280px,90%);height:auto;max-height:84px;margin:0 auto 20px}.admin-title-row,.admin-section-head{display:flex;align-items:center;justify-content:space-between;gap:20px}.admin-title-row{margin-bottom:22px}.admin-title-row h1,.admin-section-head h2{margin:0}.admin-section-head a{font-size:13px;font-weight:700}.booking-stats{margin-bottom:22px}.booking-stats .stat-card{display:flex;align-items:center;justify-content:space-between;min-height:90px;padding:20px;border:1px solid rgba(23,19,15,.1);border-radius:16px;background:#fff;color:#17130f;box-shadow:0 12px 35px rgba(20,15,10,.06)}.booking-stats .stat-card span{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.08em}.booking-stats .stat-card strong{font-family:var(--ds-serif);font-size:34px}.admin-filter-form{margin:0}.booking-admin-list{display:grid;gap:18px;margin-bottom:24px}.booking-admin-card{padding:0;overflow:hidden}.booking-admin-head{display:flex;align-items:flex-start;justify-content:space-between;gap:24px;padding:25px 28px;background:linear-gradient(135deg,#fff,#f6f0e7)}.booking-admin-head h2{margin:3px 0;font-size:31px}.booking-admin-total{text-align:right}.booking-admin-total span,.booking-admin-total strong{display:block}.booking-admin-total span{font-size:11px;text-transform:uppercase;letter-spacing:.1em;color:#6f675f}.booking-admin-total strong{font-family:var(--ds-serif);font-size:31px;color:#9e7d42}.booking-admin-facts{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid rgba(23,19,15,.09);border-bottom:1px solid rgba(23,19,15,.09)}.booking-admin-facts>div{display:flex;flex-direction:column;gap:3px;padding:18px 28px;border-right:1px solid rgba(23,19,15,.09)}.booking-admin-facts>div:last-child{border-right:0}.booking-admin-facts span{font-size:10px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:#9e7d42}.booking-admin-facts a,.booking-admin-facts strong{font-weight:700}.booking-admin-facts small{color:#6f675f}.booking-admin-details{padding:0 28px 25px}.booking-admin-details summary{padding:17px 0;cursor:pointer;font-weight:700}.booking-detail-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;padding:22px;border-radius:14px;background:#f8f5f0}.booking-detail-grid h3{margin-top:0}.booking-detail-grid ul{padding-left:19px}.booking-detail-grid li{margin:6px 0}.booking-detail-grid li strong{float:right}.danger-zone{display:flex;justify-content:flex-end;margin-top:18px;padding-top:15px;border-top:1px solid rgba(140,30,20,.12)}.three-col{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.dubai-admin-hero .v22-admin-orb small{display:block;margin-top:8px;color:#d5c5b3;font-size:11px}.v22-stat-card{color:inherit}.v22-mini-list a{display:block;color:inherit}.v22-mini-list strong small{margin-left:6px;color:#9e7d42;font-size:10px;font-family:var(--ds-sans)}
@media(max-width:900px){.booking-admin-facts{grid-template-columns:1fr}.booking-admin-facts>div{border-right:0;border-bottom:1px solid rgba(23,19,15,.09)}.booking-admin-facts>div:last-child{border-bottom:0}.booking-detail-grid,.three-col{grid-template-columns:1fr}.admin-title-row{align-items:flex-start;flex-direction:column}.booking-admin-head{padding:22px}.booking-admin-details{padding-inline:22px}}
@media(max-width:560px){.booking-admin-head{flex-direction:column}.booking-admin-total{text-align:left}.booking-admin-facts>div{padding:15px 22px}.booking-stats{grid-template-columns:1fr 1fr}.booking-stats .stat-card{min-height:75px;padding:15px}.booking-stats .stat-card strong{font-size:28px}}


/* Dubai Shootings V1.0.2 design and interaction hotfix */
.ds-site a.ds-btn,
.ds-site button.ds-btn { text-decoration: none; }
.ds-site .ds-btn-gold,
.ds-site a.ds-btn-gold,
.ds-site button.ds-btn-gold,
.ds-site .ds-btn-gold:visited { background: #d6b56f !important; border-color: #d6b56f !important; color: #17130f !important; }
.ds-site .ds-btn-gold:hover { background: #f0d28f !important; border-color: #f0d28f !important; color: #17130f !important; }
.ds-site .ds-btn-dark,
.ds-site a.ds-btn-dark,
.ds-site button.ds-btn-dark,
.ds-site .ds-btn-dark:visited { background: #17130f !important; border-color: #17130f !important; color: #fff !important; }
.ds-site .ds-btn-dark:hover { background: #9e7d42 !important; border-color: #9e7d42 !important; color: #fff !important; }
.ds-site .ds-btn-ghost,
.ds-site a.ds-btn-ghost,
.ds-site .ds-btn-ghost:visited { background: rgba(8,6,5,.28) !important; border-color: rgba(255,255,255,.72) !important; color: #fff !important; }
.ds-site .ds-btn-ghost:hover { background: #fff !important; border-color: #fff !important; color: #17130f !important; }
.ds-site .ds-btn:focus-visible,
.ds-site a:focus-visible,
.ds-site button:focus-visible { outline: 3px solid rgba(214,181,111,.55); outline-offset: 3px; }

.ds-proofbar .container > div { min-width: 0; }
.ds-proofbar strong { overflow-wrap: anywhere; }

.ds-footer { position: relative; overflow: hidden; padding: 78px 0 0; background: #100d0b; color: #fff; }
.ds-footer::before { content: ""; position: absolute; width: 440px; height: 440px; right: -170px; top: -230px; border-radius: 50%; background: radial-gradient(circle, rgba(200,169,107,.14), transparent 68%); pointer-events: none; }
.ds-footer-grid { position: relative; display: grid; grid-template-columns: minmax(280px,1.5fr) repeat(3,minmax(150px,.72fr)); gap: clamp(34px,5vw,76px); align-items: start; padding-bottom: 58px; }
.ds-footer-brand img { display: block; width: min(285px,100%); max-height: 82px; object-fit: contain; object-position: left center; }
.ds-footer-brand > p { max-width: 470px; margin: 24px 0 0; color: #c8bdb2; font-size: 15px; line-height: 1.75; }
.ds-footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; min-width: 0; }
.ds-footer-col h3 { margin: 7px 0 12px; color: #e6ca8c; font-family: var(--ds-sans); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.ds-footer-col a,
.ds-footer-col p { margin: 0; color: #e9e2db; font-size: 14px; line-height: 1.55; overflow-wrap: anywhere; }
.ds-footer-col a { position: relative; transition: color .2s, transform .2s; }
.ds-footer-col a:hover { color: #e7c77d; transform: translateX(3px); }
.ds-footer-contact p { color: #bfb3a7; }
.ds-socials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
.ds-socials a { display: inline-flex; align-items: center; min-height: 35px; padding: 0 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: .2s; }
.ds-socials a:hover { border-color: #d6b56f; background: #d6b56f; color: #17130f; }
.ds-footer-bottom { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 24px; min-height: 74px; border-top: 1px solid rgba(255,255,255,.12); }
.ds-footer-bottom p { margin: 0; color: #9f958b; font-size: 12px; }
.ds-footer-bottom > div { display: flex; gap: 24px; }
.ds-footer-bottom a { color: #cfc5bb; font-size: 12px; }
.ds-footer-bottom a:hover { color: #fff; }

.ds-contact-cards > a { border-radius: 10px; transition: background .2s, padding .2s; }
.ds-contact-cards > a:hover { padding-inline: 14px; background: #eee5d8; }
.ds-contact-cards > a strong { color: #17130f; }
.ds-contact-form .ds-btn { width: 100%; }

.ds-map-section { padding: 92px 0; background: #eee5d8; }
.ds-map-shell { display: grid; grid-template-columns: minmax(260px,.72fr) minmax(0,1.28fr); align-items: center; gap: clamp(35px,6vw,80px); }
.ds-map-copy h2 { margin: 16px 0 18px; font-size: clamp(38px,4.6vw,64px); line-height: 1.04; }
.ds-map-copy p { margin: 0 0 24px; color: #6f675f; }
.ds-map-frame { overflow: hidden; min-width: 0; border: 1px solid rgba(23,19,15,.12); border-radius: 20px; background: #ddd2c4; box-shadow: 0 22px 60px rgba(20,15,10,.12); }
.ds-map-frame iframe { display: block; width: 100%; min-height: 440px; border: 0; filter: grayscale(.15) contrast(1.03); }
.ds-contact-map { padding: 0 0 92px; background: #f7f3ec; }
.ds-contact-map .ds-map-frame iframe { min-height: 420px; }

.floating-contact { pointer-events: none; }
.floating-contact-toggle,
.floating-contact-action { pointer-events: auto; }
.floating-contact-actions { bottom: 58px; }
.floating-contact-action,
.floating-contact-toggle { flex: 0 0 auto; }
.floating-contact-action:hover { transform: translateY(-2px) scale(1.04); }

.admin-nav-disabled { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 10px 13px; border-radius: 10px; color: rgba(255,255,255,.38); cursor: not-allowed; user-select: none; }
.admin-nav-disabled small { padding: 2px 7px; border-radius: 999px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.55); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.charset-repair-card button:disabled,
.charset-repair-card input:disabled { opacity: .45; cursor: not-allowed; }

@media (max-width: 980px) {
  .ds-footer-grid { grid-template-columns: 1.25fr repeat(2,1fr); }
  .ds-footer-brand { grid-column: 1 / -1; }
  .ds-map-shell { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .ds-footer { padding-top: 58px; }
  .ds-footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 24px; padding-bottom: 42px; }
  .ds-footer-brand,.ds-footer-contact { grid-column: 1 / -1; }
  .ds-footer-brand img { width: 230px; }
  .ds-footer-bottom { align-items: flex-start; flex-direction: column; min-height: 0; padding: 23px 0 28px; }
  .ds-map-section { padding: 70px 0; }
  .ds-map-frame iframe { min-height: 360px; }
  .ds-contact-map { padding-bottom: 70px; }
  .ds-contact-cards > a,.ds-contact-cards > div { grid-template-columns: 78px minmax(0,1fr); gap: 4px 13px; }
}

/* Dubai Shootings V1.0.3 booking, legal modal and portfolio refinements */
.ds-choice-card-none {
  display: flex;
  flex-direction: column;
}
.ds-choice-card-none .ds-no-dress-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  padding: 28px 18px;
  background:
    radial-gradient(circle at 28% 20%, rgba(214,181,111,.28), transparent 34%),
    linear-gradient(145deg, #211b16, #4b3b2d);
  color: #fff;
  text-align: center;
}
.ds-choice-card-none .ds-no-dress-visual span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  color: #f0d28f;
  font-family: var(--ds-serif);
  font-size: 23px;
  letter-spacing: 0;
}
.ds-choice-card-none .ds-no-dress-visual strong {
  margin-top: 13px;
  color: #fff;
  font-family: var(--ds-sans);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.ds-choice-card-none > div:last-child { margin-top: auto; }
.ds-choice-card-none > div:last-child > strong { color: var(--ds-gold-dark); }

.ds-legal-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(12,9,7,.78);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s;
}
.ds-legal-modal.is-open { opacity: 1; visibility: visible; }
.ds-legal-dialog {
  width: min(760px, 100%);
  max-height: min(780px, calc(100vh - 48px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 35px 100px rgba(0,0,0,.38);
  transform: translateY(18px) scale(.985);
  transition: transform .22s;
}
.ds-legal-modal.is-open .ds-legal-dialog { transform: none; }
.ds-legal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 28px 21px;
  border-bottom: 1px solid var(--ds-line);
  background: #f7f3ec;
}
.ds-legal-head span {
  color: var(--ds-gold-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.ds-legal-head h2 { margin: 4px 0 0; font-size: 34px; line-height: 1.05; }
.ds-legal-close {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--ds-line);
  border-radius: 50%;
  background: #fff;
  color: var(--ds-ink);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}
.ds-legal-content { overflow-y: auto; padding: 28px; }
.ds-legal-content > :first-child { margin-top: 0; }
.ds-legal-content > :last-child { margin-bottom: 0; }
.ds-legal-content p,
.ds-legal-content li { color: #5f574f; font-size: 15px; }
.ds-legal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 18px 28px;
  border-top: 1px solid var(--ds-line);
  background: #fff;
}
body.modal-open { overflow: hidden; }

.ds-portfolio-index { background: #f7f3ec; }
.ds-portfolio-overview {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 50px;
  align-items: end;
  margin-bottom: 48px;
  padding-bottom: 35px;
  border-bottom: 1px solid var(--ds-line);
}
.ds-portfolio-overview h2 {
  max-width: 780px;
  margin: 16px 0 0;
  font-size: clamp(42px,5vw,68px);
  line-height: 1.02;
}
.ds-portfolio-stats { display: flex; gap: 10px; }
.ds-portfolio-stats > div {
  min-width: 125px;
  padding: 18px 20px;
  border: 1px solid var(--ds-line);
  border-radius: 14px;
  background: #fff;
}
.ds-portfolio-stats strong,
.ds-portfolio-stats span { display: block; }
.ds-portfolio-stats strong { font-family: var(--ds-serif); font-size: 31px; }
.ds-portfolio-stats span { color: var(--ds-muted); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.ds-portfolio-album-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px 18px;
}
.ds-portfolio-album-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--ds-line);
  border-radius: 18px;
  background: #fff;
  transition: transform .25s, box-shadow .25s;
}
.ds-portfolio-album-card:hover { transform: translateY(-5px); box-shadow: var(--ds-shadow); }
.ds-portfolio-album-media { position: relative; overflow: hidden; aspect-ratio: 4/5; background: #ddd3c6; }
.ds-portfolio-album-media:after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,9,7,.18), transparent 28%, rgba(12,9,7,.25)); }
.ds-portfolio-album-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.ds-portfolio-album-card:hover img { transform: scale(1.045); }
.ds-portfolio-number,
.ds-portfolio-count {
  position: absolute;
  z-index: 2;
  top: 15px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  background: rgba(17,13,10,.54);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.ds-portfolio-number { left: 15px; }
.ds-portfolio-count { right: 15px; }
.ds-portfolio-album-copy { display: flex; flex: 1; flex-direction: column; padding: 23px; }
.ds-portfolio-album-copy > div > span { color: var(--ds-gold-dark); font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.ds-portfolio-album-copy h2 { margin: 5px 0 0; font-size: 32px; line-height: 1.04; }
.ds-portfolio-album-copy p { min-height: 68px; margin: 15px 0 22px; color: var(--ds-muted); font-size: 13px; }
.ds-portfolio-album-copy > strong { display: flex; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 15px; border-top: 1px solid var(--ds-line); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.ds-selected-work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}
.ds-selected-work-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4/5;
  border-radius: 15px;
  background: #d9d0c5;
}
.ds-selected-work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.ds-selected-work-card:after { content: ""; position: absolute; inset: 38% 0 0; background: linear-gradient(transparent, rgba(11,8,6,.9)); }
.ds-selected-work-card:hover img { transform: scale(1.05); }
.ds-selected-work-card > div {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  align-items: end;
  padding: 18px;
  color: #fff;
}
.ds-selected-work-card > div span { grid-row: span 2; align-self: start; color: #e4c981; font-family: var(--ds-serif); font-size: 24px; }
.ds-selected-work-card > div strong { overflow: hidden; color: #fff; font-family: var(--ds-serif); font-size: 22px; line-height: 1.05; text-overflow: ellipsis; white-space: nowrap; }
.ds-selected-work-card > div b { color: #ddd2c7; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 1000px) {
  .ds-portfolio-album-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .ds-selected-work-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 680px) {
  .ds-legal-modal { padding: 10px; }
  .ds-legal-dialog { max-height: calc(100svh - 20px); border-radius: 17px; }
  .ds-legal-head { padding: 20px; }
  .ds-legal-head h2 { font-size: 29px; }
  .ds-legal-content { padding: 22px 20px; }
  .ds-legal-footer { padding: 15px 20px; }
  .ds-portfolio-overview { grid-template-columns: 1fr; gap: 24px; }
  .ds-portfolio-stats { width: 100%; }
  .ds-portfolio-stats > div { flex: 1; min-width: 0; }
  .ds-portfolio-album-grid { grid-template-columns: 1fr; }
  .ds-portfolio-album-media { aspect-ratio: 5/4; }
  .ds-portfolio-album-copy p { min-height: 0; }
  .ds-selected-work-grid { gap: 10px; }
  .ds-selected-work-card > div { padding: 13px; }
  .ds-selected-work-card > div span { font-size: 19px; }
  .ds-selected-work-card > div strong { font-size: 17px; }
  .ds-choice-card-none .ds-no-dress-visual { min-height: 180px; }
}

/* Dubai Shootings V1.0.4 mobile polish */
.ds-process h2 {
    color: #fff;
}

.ds-catalog-action {
    display: inline-flex !important;
    flex: 0 0 42px;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px;
    padding: 0 !important;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50% !important;
    line-height: 1;
}

.ds-catalog-action svg {
    display: block;
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 900px) {
    .ds-menu .nav-cta,
    .ds-menu > .nav-cta {
        display: flex !important;
        width: 100%;
        min-height: 48px;
        margin: 8px 0 0;
        padding: 0 16px;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 15px;
        line-height: 1;
    }
}

@media (max-width: 620px) {
    .ds-filterbar {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        margin-inline: -2px;
        padding: 10px;
        overflow-x: auto;
        overflow-y: hidden;
        border-radius: 18px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .ds-filterbar::-webkit-scrollbar {
        display: none;
    }

    .ds-filterbar button,
    .ds-filterbar button.is-active {
        display: inline-flex;
        flex: 0 0 auto;
        min-height: 40px;
        padding: 0 15px;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        border-radius: 999px;
    }

    .ds-filterbar select {
        flex: 0 0 158px;
        width: 158px;
        min-height: 40px;
        margin: 0;
        padding: 0 34px 0 14px;
        border: 1px solid var(--ds-line);
        border-radius: 999px;
        background-color: #fff;
    }

    .ds-catalog-card > div {
        align-items: center;
        gap: 8px;
        padding: 12px 2px 16px;
    }

    .ds-catalog-card > div > div {
        min-width: 0;
    }

    .ds-catalog-card h2 {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .ds-catalog-action {
        flex-basis: 40px;
        width: 40px !important;
        height: 40px !important;
        min-width: 40px;
    }

    .ds-catalog-action svg {
        width: 16px;
        height: 16px;
    }
}

/* ========================================================================== 
   Dubai Shootings V1.0.5 dynamic panel, responsive catalog and swipe lightbox
   ========================================================================== */
.ds-site{overflow-x:clip}
.ds-header{position:-webkit-sticky;position:sticky}
.ds-lightbox img,.lightbox-carousel figure{touch-action:none;user-select:none;-webkit-user-drag:none}
.ds-lightbox.is-open img{cursor:grab}
.ds-lightbox.is-open img:active{cursor:grabbing}

/* Dynamic roles */
.role-layout{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:22px;align-items:start}
.role-editor-card,.role-help-card,.role-list-card{border:1px solid rgba(23,19,15,.09)}
.role-help-card{position:sticky;top:22px}
.role-help-card h2{margin:8px 0 14px;font-size:30px}
.role-help-card ul{padding-left:19px;color:#625a52}
.role-help-card li{margin:10px 0}
.role-permission-section{margin-top:24px;padding-top:24px;border-top:1px solid rgba(23,19,15,.1)}
.role-section-head,.role-module-group-head,.role-savebar{display:flex;align-items:center;justify-content:space-between;gap:18px}
.role-section-head h3{margin:0 0 4px}
.role-section-head p{margin:0;color:#716960;font-size:13px}
.role-master-permission{padding:18px;border:1px solid rgba(158,125,66,.25);border-radius:14px;background:#fbf6ed}
.role-master-permission span,.role-module-permission span{display:flex;flex-direction:column;gap:3px}
.role-master-permission small,.role-module-permission small{color:#716960;font-weight:400;line-height:1.45}
.role-module-group{margin-top:18px;padding:16px;border:1px solid rgba(23,19,15,.09);border-radius:15px;background:#fbfaf8}
.role-module-group-head{margin-bottom:12px}
.role-module-group-head span{color:#8a8178;font-size:11px;text-transform:uppercase;letter-spacing:.08em}
.role-module-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.role-capability-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.role-savebar{position:sticky;bottom:0;z-index:8;margin:28px -24px -24px;padding:16px 24px;border-top:1px solid rgba(23,19,15,.1);background:rgba(255,255,255,.96);backdrop-filter:blur(12px)}
.role-savebar p{max-width:620px;margin:0;color:#716960;font-size:12px}
.role-list-card{margin-top:22px}
.role-list-card td>small{display:block;margin-top:4px;color:#7b736b}
.module-meta code{overflow-wrap:anywhere}

@media(max-width:1050px){
  .role-layout{grid-template-columns:1fr}
  .role-help-card{position:static}
}
@media(max-width:720px){
  .role-module-grid,.role-capability-grid{grid-template-columns:1fr}
  .role-section-head,.role-savebar{align-items:flex-start;flex-direction:column}
  .role-savebar{margin-inline:-18px;padding-inline:18px}
}

/* Dress Catalog: compact, fluid and reliably sticky on mobile */
.page-catalog .ds-catalog-grid,.page-catalog .ds-catalog-card,.page-catalog .ds-catalog-card>div,.page-catalog .ds-catalog-card>div>div{min-width:0}
.page-catalog .ds-catalog-card>a{width:100%}
.page-catalog .ds-catalog-action{box-shadow:0 8px 22px rgba(23,19,15,.16)}
.page-catalog .ds-filterbar{max-width:100%}

@media(max-width:900px){
  body.page-catalog .ds-topbar{display:none}
  body.page-catalog .ds-header{position:fixed!important;top:0;left:0;right:0;width:100%;z-index:120}
  body.page-catalog main{padding-top:78px}
  body.page-catalog .ds-menu{top:86px;max-height:calc(100dvh - 102px);overflow-y:auto}
  body.page-catalog .ds-filterbar{top:88px;z-index:35}
}

@media(max-width:620px){
  body.page-catalog main{padding-top:68px}
  body.page-catalog .ds-menu{top:76px}
  body.page-catalog .ds-filterbar{top:76px;margin-bottom:24px;padding:9px}
  .page-catalog .ds-catalog-grid{gap:14px 10px}
  .page-catalog .ds-catalog-card>a{aspect-ratio:4/5}
  .page-catalog .ds-catalog-card>div{padding:12px 2px 18px}
  .page-catalog .ds-catalog-action{flex:0 0 42px;width:42px!important;height:42px!important;min-width:42px}
}

@media(max-width:520px){
  .page-catalog .ds-catalog-grid{grid-template-columns:minmax(0,1fr)}
  .page-catalog .ds-catalog-card>a{aspect-ratio:5/6}
  .page-catalog .ds-catalog-card h2{font-size:27px;white-space:normal;line-height:1.1}
  .page-catalog .ds-catalog-card span,.page-catalog .ds-catalog-card p{font-size:11px}
  .page-catalog .ds-filterbar{margin-inline:0}
  .page-catalog .ds-filterbar select{flex-basis:150px;width:150px}
}

@media(max-width:620px){
  .ds-lightbox [data-lightbox-prev]{left:10px}
  .ds-lightbox [data-lightbox-next]{right:10px}
  .ds-lightbox [data-lightbox-close]{right:12px;top:12px}
  .ds-lightbox button{width:42px;height:42px}
  .ds-lightbox img{max-width:100vw;max-height:86dvh;padding:0 8px}
}
