:root {
    color-scheme: light;
    --black: #070b10;
    --black-2: #0d141d;
    --ink: #10141c;
    --muted: #64707d;
    --gold: #e5b84d;
    --gold-2: #f4d27a;
    --white: #ffffff;
    --soft: #f6f4ef;
    --line: rgba(16, 20, 28, 0.12);
    --dark-line: rgba(255, 255, 255, 0.14);
    --shadow: 0 20px 60px rgba(12, 16, 24, 0.14);
    --radius: 8px;
    --max: 1180px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--soft);
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    color: var(--muted);
    line-height: 1.62;
}

h1,
h2,
h3 {
    margin: 0;
    letter-spacing: 0;
    line-height: 1.08;
}

h1 {
    max-width: 760px;
    font-size: clamp(3rem, 6vw, 5.35rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2rem, 3.2vw, 3.25rem);
    font-weight: 900;
}

h3 {
    font-size: 1.18rem;
}

.section-shell {
    width: min(calc(100% - 36px), var(--max));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 50;
    width: min(calc(100% - 44px), var(--max));
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 58px;
    padding: 0 10px 0 4px;
    color: var(--white);
    transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
    padding-left: 12px;
    border: 1px solid var(--dark-line);
    border-radius: 999px;
    background: rgba(7, 11, 16, 0.82);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    font-weight: 900;
}

.brand span:last-child {
    display: grid;
    line-height: 1;
}

.brand small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    color: #070707;
    font-weight: 1000;
    transform: rotate(-12deg);
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.88rem;
    font-weight: 800;
}

.nav-links a:hover {
    color: var(--gold-2);
}

.quote-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 22px;
    border: 1px solid var(--gold);
    border-radius: 8px;
    color: var(--gold-2);
    font-size: 0.84rem;
    font-weight: 900;
}

.menu-button {
    display: none;
    justify-self: end;
    width: 42px;
    height: 42px;
    border: 1px solid var(--dark-line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.menu-button span {
    display: block;
    width: 17px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
}

.hero {
    min-height: 720px;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(5, 8, 12, 0.98) 0%, rgba(5, 8, 12, 0.91) 38%, rgba(5, 8, 12, 0.46) 68%, rgba(5, 8, 12, 0.82) 100%),
        radial-gradient(circle at 76% 26%, rgba(229, 184, 77, 0.32), transparent 24rem),
        radial-gradient(circle at 86% 48%, rgba(183, 92, 27, 0.3), transparent 22rem),
        #060a0f;
    overflow: hidden;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    min-height: 720px;
    padding: 120px 0 70px;
}

.hero-copy {
    position: relative;
    z-index: 3;
}

.eyebrow {
    margin: 0 0 15px;
    color: #b98321;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: var(--white);
}

.eyebrow span,
h1 em {
    color: var(--gold);
    font-style: normal;
}

.hero-subline {
    max-width: 560px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    font-weight: 650;
}

.hero-actions,
.section-heading,
.panel-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.hero-actions {
    justify-content: flex-start;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 900;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.button-primary {
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    color: #111;
}

.button-ghost {
    border-color: var(--gold);
    color: var(--white);
    background: rgba(255, 255, 255, 0.02);
}

.button-light {
    border-color: rgba(185, 131, 33, 0.45);
    color: #9a6915;
    background: rgba(255, 255, 255, 0.82);
}

.button-dark {
    background: #090e16;
    color: var(--white);
}

.play-dot {
    width: 22px;
    height: 22px;
    border: 1px solid var(--gold);
    border-radius: 50%;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    max-width: 640px;
    margin-top: 58px;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 850;
}

.hero-features i,
.service-icon,
.combo-item span {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(229, 184, 77, 0.12);
    color: var(--gold-2);
    font-size: 0.74rem;
    font-style: normal;
    font-weight: 1000;
    box-shadow: inset 0 0 0 1px rgba(229, 184, 77, 0.55);
}

.camera-stage {
    position: relative;
    min-height: 500px;
}

.camera-stage::before {
    position: absolute;
    inset: 10% -12% 0 2%;
    content: "";
    background:
        radial-gradient(circle at 34% 24%, rgba(244, 210, 122, 0.75) 0 8px, transparent 9px),
        radial-gradient(circle at 55% 15%, rgba(244, 210, 122, 0.85) 0 10px, transparent 11px),
        radial-gradient(circle at 70% 38%, rgba(244, 210, 122, 0.52) 0 13px, transparent 14px),
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.55) 0 7px, transparent 8px),
        radial-gradient(circle at 45% 55%, rgba(197, 99, 31, 0.5), transparent 6rem);
    filter: blur(1px);
    opacity: 0.88;
}

.camera-glow {
    position: absolute;
    right: 3%;
    top: 10%;
    width: 520px;
    max-width: 100%;
    aspect-ratio: 1.15;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 184, 77, 0.32), rgba(229, 184, 77, 0.05) 42%, transparent 70%);
}

.camera-rig {
    position: absolute;
    right: 7%;
    top: 22%;
    width: min(520px, 88%);
    height: 335px;
    transform: rotate(-2deg);
}

.camera-body {
    position: absolute;
    right: 0;
    top: 58px;
    width: 390px;
    height: 175px;
    border-radius: 18px 34px 28px 18px;
    background: linear-gradient(145deg, #1b232d, #05070a 58%, #151a21);
    box-shadow: 0 35px 75px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.camera-top {
    position: absolute;
    left: 62px;
    top: -42px;
    width: 154px;
    height: 54px;
    border-radius: 24px 24px 10px 10px;
    background: linear-gradient(180deg, #252d38, #07090d);
}

.camera-screen {
    position: absolute;
    left: 34px;
    top: 42px;
    width: 145px;
    height: 88px;
    border: 8px solid #080b10;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(229, 184, 77, 0.55), transparent 48%),
        linear-gradient(180deg, #2c495e, #10161d);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.camera-lens {
    position: absolute;
    right: -72px;
    top: 37px;
    width: 185px;
    height: 106px;
    border-radius: 999px;
    background: radial-gradient(circle at 68% 50%, #08090c 0 32px, #202934 33px 55px, #080b10 56px 100%);
    box-shadow: inset 0 0 0 8px #161c25, 0 20px 55px rgba(0, 0, 0, 0.5);
}

.camera-handle {
    position: absolute;
    right: 70px;
    bottom: -60px;
    width: 140px;
    height: 82px;
    border: 18px solid #0b0f15;
    border-top: 0;
    border-radius: 0 0 64px 64px;
}

.camera-stick {
    position: absolute;
    right: 174px;
    top: 232px;
    width: 18px;
    height: 260px;
    border-radius: 99px;
    background: linear-gradient(180deg, #222c38, #05070a);
    transform: rotate(12deg);
}

.hero-proof {
    position: absolute;
    right: 0;
    bottom: -1px;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: min(430px, 50%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px 10px 0 0;
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(18px);
}

.hero-proof div {
    padding: 22px 18px;
    text-align: center;
}

.hero-proof div + div {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof strong {
    display: block;
    font-size: 1.45rem;
}

.hero-proof small {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.76rem;
}

.about {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 58px;
    align-items: center;
    padding: 78px 0;
    background: var(--soft);
}

.media-collage {
    display: grid;
    grid-template-columns: 1.24fr 0.76fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
    min-height: 340px;
}

.photo-card {
    border-radius: 12px;
    box-shadow: var(--shadow);
    background-size: cover;
    background-position: center;
}

.photo-main {
    position: relative;
    grid-row: 1 / 3;
    background:
        linear-gradient(145deg, rgba(7, 11, 16, 0.1), rgba(7, 11, 16, 0.5)),
        radial-gradient(circle at 70% 30%, rgba(229, 184, 77, 0.75), transparent 7rem),
        linear-gradient(135deg, #28323d, #080b10 62%, #c1692a);
}

.play-card {
    position: absolute;
    left: -30px;
    bottom: 28px;
    display: grid;
    place-items: center;
    width: 170px;
    min-height: 70px;
    border-radius: 12px;
    background: var(--white);
    color: var(--ink);
    font-size: 1.1rem;
    box-shadow: var(--shadow);
}

.photo-room {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(16, 20, 28, 0.1)),
        linear-gradient(135deg, #dad5c9 0 35%, #9a8060 36% 55%, #222832 56%);
}

.photo-edit {
    background:
        linear-gradient(145deg, rgba(6, 10, 15, 0.1), rgba(6, 10, 15, 0.48)),
        radial-gradient(circle at 70% 38%, rgba(229, 184, 77, 0.7), transparent 5rem),
        linear-gradient(135deg, #171d25, #697380);
}

.about-copy p {
    max-width: 650px;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 28px 0;
}

.about-points span {
    min-height: 64px;
    padding: 0 14px;
    border-right: 1px solid rgba(185, 131, 33, 0.36);
    font-size: 0.86rem;
    font-weight: 850;
}

.services {
    padding: 36px 0 66px;
}

.section-heading {
    margin-bottom: 24px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    min-height: 128px;
    padding: 22px;
    border: 1px solid rgba(16, 20, 28, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 70px rgba(12, 16, 24, 0.18);
}

.service-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #05080d;
    color: var(--gold-2);
    box-shadow: none;
}

.service-card p {
    margin: 7px 0 14px;
    font-size: 0.92rem;
}

.service-card a,
.portfolio-panel > a {
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 900;
}

.packages {
    color: var(--white);
    background:
        radial-gradient(circle at 84% 10%, rgba(229, 184, 77, 0.1), transparent 22rem),
        linear-gradient(135deg, #070b10, #101823 56%, #06090e);
}

.package-shell {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 30px;
    padding: 56px 0;
}

.packages .eyebrow {
    color: var(--gold);
}

.packages p {
    color: rgba(255, 255, 255, 0.68);
}

.package-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 22px;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.package-tabs button {
    min-height: 48px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    color: var(--white);
    font: inherit;
    font-size: 0.78rem;
    font-weight: 850;
}

.package-tabs .active {
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    color: #111;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.package-panel {
    display: none;
}

.package-panel.active {
    display: grid;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 315px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.price-card.featured {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px rgba(229, 184, 77, 0.22);
}

.ribbon {
    position: absolute;
    top: 16px;
    right: -28px;
    width: 120px;
    padding: 6px 0;
    background: var(--gold);
    color: #111;
    font-size: 0.7rem;
    font-weight: 900;
    text-align: center;
    transform: rotate(38deg);
}

.plan-name {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 900;
    text-align: center;
}

.price-card h3 {
    margin-bottom: 22px;
    font-size: 2rem;
    text-align: center;
}

.price-card h3 span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
}

.price-card ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.price-card li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.84rem;
}

.price-card li::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 8px;
    border: 1px solid var(--gold);
    border-radius: 50%;
}

.price-card small {
    display: block;
    margin-top: auto;
    padding: 10px;
    border: 1px solid rgba(229, 184, 77, 0.38);
    border-radius: 6px;
    color: var(--gold-2);
    font-size: 0.72rem;
    text-align: center;
}

.combo-card {
    align-self: stretch;
    padding: 28px 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
}

.combo-card h3 {
    color: var(--gold-2);
    margin-bottom: 22px;
}

.combo-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 14px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.combo-item span {
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    color: #111;
    box-shadow: none;
}

.combo-item strong,
.combo-item small {
    grid-column: 2;
}

.combo-item small {
    color: var(--gold-2);
    font-weight: 850;
}

.combo-card .button {
    width: 100%;
    margin-top: 22px;
}

.work-testimonials {
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    gap: 42px;
    padding: 56px 0 48px;
}

.portfolio-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 20px 0 18px;
}

.work-card {
    min-width: 0;
}

.work-image {
    display: grid;
    place-items: center;
    aspect-ratio: 1.18;
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(229, 184, 77, 0.28), transparent),
        radial-gradient(circle at 72% 32%, rgba(229, 184, 77, 0.45), transparent 5rem),
        linear-gradient(135deg, #1c2631, #d8d1c2);
}

.work-card:nth-child(2) .work-image {
    background:
        linear-gradient(135deg, rgba(23, 50, 30, 0.1), rgba(16, 20, 28, 0.18)),
        linear-gradient(145deg, #364733, #ddd5c3 44%, #1f2933);
}

.work-card:nth-child(3) .work-image {
    background:
        radial-gradient(circle at 42% 38%, #d58b39, transparent 5rem),
        linear-gradient(135deg, #4b2818, #f0c26c);
}

.work-image span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    font-size: 1.5rem;
    font-weight: 900;
}

.work-card h3 {
    margin-top: 9px;
}

.work-card p {
    margin: 5px 0 0;
    font-size: 0.82rem;
}

.quote-card {
    position: relative;
    margin: 20px 0 0;
    padding: 36px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow);
}

blockquote {
    margin: 0 0 20px;
    color: #596270;
    line-height: 1.7;
}

figcaption {
    color: var(--ink);
    font-weight: 900;
}

figcaption span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.83rem;
    font-weight: 600;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
}

.dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(16, 20, 28, 0.16);
}

.dots span:first-child {
    background: var(--gold);
}

.blog-strip {
    padding: 24px 0 58px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.blog-card {
    padding: 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow);
}

.blog-card p {
    margin: 0 0 10px;
    color: #b98321;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

.blog-card span {
    display: block;
    margin-top: 12px;
    color: var(--muted);
}

.contact-cta {
    position: relative;
    background: linear-gradient(135deg, var(--gold-2), #d79e2e);
}

.cta-inner {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr 0.5fr;
    gap: 26px;
    align-items: center;
    min-height: 98px;
    padding: 18px 0;
}

.cta-inner h2 {
    font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.cta-inner p {
    margin: 4px 0 0;
    color: rgba(17, 17, 17, 0.74);
}

.quick-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 10px;
}

.quick-form textarea {
    display: none;
}

input,
textarea {
    width: 100%;
    border: 1px solid rgba(16, 20, 28, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--ink);
    padding: 13px 14px;
    font: inherit;
    outline: none;
}

input:focus,
textarea:focus {
    border-color: #9a6915;
}

.cta-contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    color: #111;
    font-size: 0.84rem;
}

.sent-toast {
    position: absolute;
    left: 50%;
    bottom: -18px;
    z-index: 4;
    transform: translateX(-50%);
    margin: 0;
    padding: 9px 16px;
    border-radius: 999px;
    background: #10141c;
    color: var(--gold-2);
    box-shadow: var(--shadow);
}

.site-footer {
    display: grid;
    grid-template-columns: 1.2fr 0.75fr 1fr 1fr;
    gap: 34px;
    padding: 52px max(18px, calc((100% - var(--max)) / 2)) 34px;
    color: rgba(255, 255, 255, 0.88);
    background: linear-gradient(135deg, #070b10, #111b27);
}

.site-footer p {
    color: rgba(255, 255, 255, 0.66);
}

.site-footer nav,
.site-footer > div {
    display: grid;
    align-content: start;
    gap: 9px;
}

.site-footer strong {
    color: var(--white);
}

.site-footer a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

.site-footer .brand {
    margin-bottom: 8px;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.admin-body {
    display: grid;
    grid-template-columns: 270px 1fr;
    min-height: 100vh;
    color: var(--white);
    background: #0d0d0d;
}

.login-body {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    padding: 20px;
}

.login-card,
.admin-panel,
.admin-metrics article {
    border: 1px solid var(--dark-line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(16px);
}

.login-card {
    width: min(100%, 430px);
    padding: 30px;
}

.login-card h1 {
    margin: 26px 0 18px;
    color: var(--white);
    font-size: 2.4rem;
}

.login-hint {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 20px;
    border-right: 1px solid var(--dark-line);
    background: rgba(255, 255, 255, 0.045);
}

.admin-sidebar nav {
    display: grid;
    gap: 6px;
    margin-top: 28px;
}

.admin-sidebar nav a,
.logout-link {
    width: 100%;
    padding: 12px 14px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #dedede;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.admin-sidebar nav a.active,
.admin-sidebar nav a:hover,
.logout-link:hover {
    background: rgba(229, 184, 77, 0.14);
    color: var(--gold-2);
}

.logout-link {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
}

.admin-main {
    width: min(100%, 1180px);
    padding: 30px;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.admin-topbar h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 4rem);
}

.admin-alert {
    display: inline-block;
    margin-top: 14px;
    color: var(--gold-2);
}

.admin-metrics {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}

.admin-metrics article {
    padding: 18px;
}

.admin-metrics span {
    display: block;
    color: var(--gold);
    font-size: 2rem;
    font-weight: 900;
}

.admin-metrics p {
    margin: 4px 0 0;
    color: #b9b9b9;
}

.admin-panel {
    padding: 22px;
    margin-bottom: 18px;
}

.admin-panel h2 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: 1.35rem;
}

.admin-table,
.enquiry-list {
    display: grid;
    gap: 12px;
}

.admin-table div,
.enquiry-list article,
.cms-row {
    padding: 16px;
    border: 1px solid var(--dark-line);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.22);
}

.admin-table span,
.enquiry-list span,
.enquiry-list small {
    display: block;
    color: #b9b9b9;
}

.cms-row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 14px;
}

.cms-row label,
.admin-form label,
.settings-grid label {
    display: grid;
    gap: 8px;
    color: #ededed;
    font-weight: 700;
}

.cms-row label:has(textarea),
.checkbox-label {
    grid-column: 1 / -1;
}

.admin-body input,
.admin-body textarea {
    border-color: var(--dark-line);
    background: rgba(0, 0, 0, 0.26);
    color: var(--white);
}

.row-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border: 1px solid var(--dark-line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    cursor: pointer;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
}

.settings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.settings-grid section {
    display: grid;
    gap: 14px;
}

.settings-grid .button {
    justify-self: start;
}

.enquiry-list article {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
}

@media (max-width: 1080px) {
    .nav-links {
        gap: 16px;
    }

    .hero-inner,
    .about,
    .package-shell,
    .work-testimonials,
    .cta-inner,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        align-items: start;
        padding-top: 118px;
    }

    .camera-stage {
        min-height: 330px;
    }

    .hero-proof {
        position: relative;
        width: 100%;
        margin-top: 24px;
    }

    .combo-card {
        max-width: 560px;
    }
}

@media (max-width: 840px) {
    .site-header {
        grid-template-columns: auto auto;
        width: min(calc(100% - 24px), var(--max));
        padding: 8px 10px;
        border: 1px solid var(--dark-line);
        border-radius: 20px;
        background: rgba(7, 11, 16, 0.9);
        backdrop-filter: blur(14px);
    }

    .menu-button {
        display: block;
    }

    .quote-button {
        display: none;
    }

    .nav-links {
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        display: none;
        grid-template-columns: 1fr;
        justify-content: stretch;
        gap: 0;
        padding: 10px;
        border: 1px solid var(--dark-line);
        border-radius: 16px;
        background: rgba(7, 11, 16, 0.97);
    }

    .nav-links.open {
        display: grid;
    }

    .nav-links a {
        padding: 12px;
    }

    .hero,
    .hero-inner {
        min-height: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding-bottom: 44px;
    }

    .hero-features,
    .service-grid,
    .pricing-grid,
    .portfolio-strip,
    .blog-grid,
    .quick-form,
    .about-points,
    .hero-proof,
    .admin-metrics,
    .settings-grid,
    .cms-row {
        grid-template-columns: 1fr;
    }

    .camera-rig {
        right: auto;
        left: 0;
        width: 430px;
        max-width: 94%;
        transform: scale(0.78);
        transform-origin: left top;
    }

    .media-collage {
        grid-template-columns: 1fr;
        grid-template-rows: 260px 160px 160px;
    }

    .photo-main {
        grid-row: auto;
    }

    .play-card {
        left: 18px;
        bottom: 18px;
    }

    .package-tabs {
        grid-template-columns: 1fr;
    }

    .admin-body {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: relative;
        height: auto;
    }

    .logout-link {
        position: static;
        width: 100%;
        margin-top: 12px;
    }

    .admin-main {
        padding: 18px;
    }

    .admin-topbar,
    .enquiry-list article {
        align-items: flex-start;
        flex-direction: column;
        display: flex;
    }
}

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