:root {
	--bg: #07101b;
	--bg-soft: #0c1624;
	--surface: rgba(255, 255, 255, .05);
	--surface-strong: rgba(255, 255, 255, .07);
	--stroke: rgba(255, 255, 255, .08);
	--text: #f5f7fb;
	--muted: #b9c3d2;
	--gold: #dfab4f;
	--gold-soft: #f2d08c;
	--shadow: 0 26px 60px rgba(0, 0, 0, .34);
	--radius: 28px;
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	font-family: Inter, system-ui, sans-serif;
	color: var(--text);
	background: radial-gradient(circle at top left, rgba(223, 171, 79, .12), transparent 28%), radial-gradient(circle at 80% 10%, rgba(64, 110, 196, .16), transparent 22%), linear-gradient(180deg, #050b14, #07101b 20%, #091320 100%);
}

body.lock {
	overflow: hidden
}

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

img {
	max-width: 100%;
	display: block
}

.site-bg {
	position: fixed;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, .25), transparent 78%);
	opacity: .22;
	z-index: -1
}

.container {
	width: min(1180px, calc(100% - 40px));
	margin: auto
}

.section {
	padding: 110px 0;
	position: relative
}

.header {
	position: sticky;
	top: 0;
	z-index: 20;
	backdrop-filter: blur(20px);
	background: rgba(5, 11, 20, .66);
	border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.nav-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 16px 0
}

.brand {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0
}

.brand-logo {
	width: 46px;
	height: 46px;
	object-fit: contain;
	filter: drop-shadow(0 8px 22px rgba(223, 171, 79, .18))
}

.brand strong {
	display: block;
	font-size: 1.08rem;
	line-height: 1.15
}

.brand span {
	display: block;
	font-size: .9rem;
	color: var(--muted);
	margin-top: 2px
}

.menu-toggle {
	display: none;
	border: 1px solid var(--stroke);
	background: var(--surface);
	color: white;
	padding: 12px 16px;
	border-radius: 999px
}

.nav {
	display: flex;
	align-items: center;
	gap: 14px
}

.nav>a:not(.btn) {
	padding: 10px 8px;
	color: #d8dfeb
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: 999px;
	padding: 16px 24px;
	font-weight: 700;
	transition: .28s ease;
	border: 1px solid transparent;
	cursor: pointer
}

.btn:hover {
	transform: translateY(-2px)
}

.btn-gold {
	background: linear-gradient(135deg, #f0c160, #d89f36);
	color: #1d160a;
	box-shadow: 0 10px 30px rgba(223,171,79,0.25)
}

.btn-ghost {
	background: rgba(255, 255, 255, .04);
	border-color: var(--stroke);
	color: white
}

.btn-sm {
	padding: 12px 18px;
	font-size: .95rem
}

.eyebrow,
.mini-label {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border-radius: 999px;
	border: 1px solid rgba(223, 171, 79, .25);
	background: rgba(223, 171, 79, .08);
	color: var(--gold-soft);
	font-size: .83rem;
	font-weight: 800;
	letter-spacing: .05em;
	text-transform: uppercase
}

.hero {
	display: grid;
	gap: 32px
}

.hero-top {
	display: grid;
	grid-template-columns: .95fr 1.05fr;
	gap: 42px;
	align-items: start
}

.hero h1,
.section-head h2,
.split-intro h2,
.contact-copy h2 {
	font-family: "Cormorant Garamond", serif;
	line-height: .95;
	letter-spacing: -.04em;
	margin: 18px 0 20px
}

.hero h1 {
	font-size: clamp(3.4rem, 5.8vw, 6.2rem);
	max-width: 10ch;
	line-height: .95;
	margin: 10px 0 20px
}

.section-head .eyebrow {
    display: inline-block;
    width: fit-content;
} 

.section-head h2,
.split-intro h2,
.contact-copy h2 {
	font-size: clamp(2.8rem, 5vw, 4.4rem);
	
}

.lead,
.split-intro p,
.gallery-header p,
.contact-copy p,
.signature-card p,
.engagement-card p,
.mini-story p,
.contact-note p {
	color: var(--muted);
	font-size: 1.08rem;
	line-height: 1.85
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px
}

.hero-actions.compact {
	margin-top: 20px
}

.hero-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px
}

.hero-cards article,
.signature-card,
.engagement-card,
.engagement-quote,
.review-card,
.card-soft,
.contact-note {
	background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .03));
	border: 1px solid var(--stroke);
	border-radius: var(--radius);
	box-shadow: var(--shadow)
}

.hero-cards article {
	padding: 26px;
	min-height: 230px;
	display: flex;
	flex-direction: column;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	justify-content: space-between
}

.hero-cards article:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}

.hero-cards article:first-child {
    border: 1px solid rgba(223,171,79,0.4);
    box-shadow: 0 0 0 1px rgba(223,171,79,0.2), var(--shadow);
}

.hero-cards article:nth-child(1),
.hero-cards article:nth-child(2) {
    justify-content: center;
}

.hero-cards span {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border-radius: 999px;
	border: 1px solid rgba(223, 171, 79, .25);
	background: rgba(223, 171, 79, .08);
	color: var(--gold-soft);
	font-size: .82rem;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
	margin-bottom: 18px;
	width: fit-content
}

.hero-cards strong,
.hero-cards h3 {
	display: block;
	font-size: 1.18rem;
	line-height: 1.18;
	margin: 0 0 14px
}

.hero-cards p {
	margin: 0;
	color: var(--muted);
	line-height: 1.65;
	font-size: 1rem
}

.hero-stage {
	display: grid;
	gap: 18px
}

.hero-visual-card {
	position: relative;
	overflow: hidden;
	padding: 0;
	min-height: 560px
}

.hero-visual-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top
}



.engagement-card h3,
.signature-card h3,
.contact-note h3,
.card-soft h3 {
	margin: 14px 0 10px;
	font-size: 1.38rem;
	line-height: 1.2;
	letter-spacing: -.03em
}

.glow-card {
	background: radial-gradient(circle at top right, rgba(223, 171, 79, .12), transparent 40%), linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .03))
}

.split-intro {
	display: grid;
	grid-template-columns: .95fr 1.05fr;
	gap: 32px;
	align-items: end;
	margin-bottom: 34px
}

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

.signature-card {
	padding: 28px;
	position: relative;
	overflow: hidden
}

.signature-number {
	font-family: "Cormorant Garamond", serif;
	font-size: 4rem;
	line-height: 1;
	color: rgba(223, 171, 79, .22);
	display: block
}

.section-head {
	display: grid;
	gap: 12px;
	margin-bottom: 28px
}

.section-head--center {
	text-align: center;
	justify-items: center
}

.gallery-copy h3 {
    margin: 16px 0 12px;
    font-size: 2rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.gallery-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 1rem;
}

.gallery-header {
	display: grid;
	grid-template-columns: 1fr .8fr;
	gap: 30px;
	align-items: end;
	margin-bottom: 28px
}

.gallery-premium {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: start;
}

.gallery-main-panel,
.gallery-side-panel {
	min-width: 0
}

.gallery-main {
	position: relative;
	border: none;
	background: none;
	padding: 0;
	width: 100%;
	overflow: hidden;
	border-radius: 34px;
	cursor: pointer;
	box-shadow: var(--shadow)
}

.gallery-main img {
    width: 100%;
    min-height: 560px;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.gallery-main:hover img {
	transform: scale(1.03)
}

.gallery-overlay {
	position: absolute;
	left: 22px;
	right: 22px;
	bottom: 22px;
	padding: 18px 20px;
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(8, 14, 24, .22), rgba(8, 14, 24, .78));
	backdrop-filter: blur(10px);
	text-align: left
}

.gallery-overlay strong {
	display: block;
	font-size: 1.26rem;
	margin: 10px 0 4px
}

.gallery-overlay em {
	font-style: normal;
	color: #dbe4f2;
	opacity: .85
}

.gallery-side-panel {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 28px;
}

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

.thumb {
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #0d1624;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid rgba(255,255,255,0.06);
    aspect-ratio: 1 / 1;
    cursor: pointer;
    transition: transform .25s ease, border-color .25s ease;
}

.thumb:hover {
    transform: translateY(-3px);
    border-color: rgba(223,171,79,0.35);
}

.thumb.is-active {
	border-color: rgba(223, 171, 79, .55)
}

.thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.engagement-strip {
	display: grid;
	grid-template-columns: 1.1fr 1fr .9fr;
	gap: 22px;
	align-items: stretch
}

.engagement-card,
.engagement-quote {
	padding: 28px
}

.engagement-card.featured {
	background: radial-gradient(circle at top right, rgba(223, 171, 79, .16), transparent 38%), linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .04))
}

.engagement-quote {
	display: flex;
	align-items: flex-end;
	font-family: "Cormorant Garamond", serif;
	font-size: 2rem;
	line-height: 1.08;
	letter-spacing: -.03em
}

.reviews-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.reviews-premium .review-card {
    padding: 28px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .03));
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.reviews-premium .review-card p {
    margin: 18px 0 24px;
    font-size: 1.02rem;
    line-height: 1.75;
    color: #eef3fb;
}

.reviews-bottom {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    align-items: center;
    padding: 28px;
}

.reviews-score {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reviews-score strong {
    font-size: 4.5rem;
    letter-spacing: -0.04em;
}

.reviews-score span {
    color: var(--muted);
}

.reviews-actions p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 1.04rem;
}

.social-row-icons {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.social-row-icons a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);

    transition: all 0.25s ease;
}

.social-row-icons a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}



.social-row-icons img,
.social-links img,
.footer-social img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.social-row-icons a:nth-child(1):hover {
    box-shadow: 0 0 20px rgba(24,119,242,0.6);
}

.social-row-icons a:nth-child(2):hover {
    box-shadow: 0 0 20px rgba(221,42,123,0.6);
}

.social-row-icons a:nth-child(3):hover {
    box-shadow: 0 0 20px rgba(254,44,85,0.6);
}

@media (max-width: 1100px) {
    .reviews-premium {
        grid-template-columns: 1fr;
    }

    .reviews-bottom {
        grid-template-columns: 1fr;
    }
}

.stars {
	color: #ffc85f;
	letter-spacing: .18em;
	font-size: 1.1rem
}

.stars.small {
	font-size: .95rem;
	letter-spacing: .16em
}


.review-card {
	transition: transform .25s ease, box-shadow .25s ease;
	padding: 22px;
	min-height: 250px;
	display: flex;
	flex-direction: column;
	justify-content: space-between
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.review-card p {
	font-size: .98rem;
	line-height: 1.72;
	color: #eef3fb
}

.review-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
	color: #d6dde9
}

.avatar {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(223, 171, 79, .13);
	border: 1px solid rgba(223, 171, 79, .3);
	color: #ffd992;
	font-weight: 800
}

.premium-info {
	grid-template-columns: 1fr 1fr;
	gap: 22px
}

.info-grid,
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px
}

.card-soft {
	padding: 28px
}

.hours-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 12px
}

.hours-list li {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.hours-list span {
	color: var(--muted)
}


.socials a {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .08)
}

.socials svg {
	width: 20px;
	height: 20px;
	fill: white
}

.contact-premium {
	display: grid;
	gap: 28px
}

.contact-grid {
	align-items: start
}

.contact-centered {
    max-width: 700px;
    margin: 40px auto 0;
	animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form {
	padding: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}


.contact-form label {
	display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--muted);
}

.contact-form input,
.contact-form textarea {
    transition: all 0.25s ease;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(223,171,79,0.6);
    box-shadow: 0 0 0 2px rgba(223,171,79,0.15);
    background: rgba(255,255,255,0.06);
}

.contact-form input,
.contact-form textarea,
.admin-card input,
.admin-card textarea,
.upload-form input {
	width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--stroke);
    background: rgba(255,255,255,0.04);
    color: white;
}

.contact-form textarea {
    margin-bottom: 20px;
}

.contact-form button {
	transition: all 0.25s ease;
    width: 100%;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(223,171,79,0.25);
}

.contact-note {
	display: grid;
	align-content: start;
	gap: 16px
}

.footer {
	padding-top: 0
}

.footer-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	border-top: 1px solid rgba(255, 255, 255, .08);
	padding-top: 28px;
	padding-bottom: 34px
}

.footer-wrap p {
	margin: .35rem 0 0;
	color: var(--muted)
}

.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(3, 7, 13, .86);
	display: grid;
	place-items: center;
	padding: 28px;
	z-index: 50
}

.lightbox[hidden] {
	display: none !important
}

.lightbox img {
	max-width: min(1100px, 94vw);
	max-height: 88vh;
	border-radius: 28px
}

.lightbox-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	border: none;
	font-size: 2rem;
	background: rgba(255, 255, 255, .12);
	color: white;
	cursor: pointer
}

.alert {
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.alert.success {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
}

.alert.error {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

.admin-body {
	min-height: 100vh;
	padding: 28px;
	background: linear-gradient(180deg, #0a111d, #09121f)
}

.admin-wrap {
    width: min(1100px, calc(100% - 40px));
    margin: 40px auto;
}

.admin-header {
    margin-bottom: 28px;
}

.admin-header h1 {
    margin: 0 0 8px;
    font-size: 2.4rem;
    line-height: 1.1;
}

.admin-header p {
    margin: 0;
    color: var(--muted);
}

.admin-stack {
    display: grid;
    gap: 24px;
}

.admin-card {
    width: 100%;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--shadow);
}

.admin-card h2 {
    margin: 0 0 18px;
    font-size: 1.5rem;
    line-height: 1.2;
}

.admin-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

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

.admin-field {
    display: grid;
    gap: 8px;
}

.admin-field label {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
}

.admin-field input,
.admin-field textarea,
.admin-field select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
    color: #fff;
    font: inherit;
}

.admin-field textarea {
    min-height: 120px;
    resize: vertical;
}

.admin-hours {
    display: grid;
    gap: 14px;
}

.admin-hours-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 14px;
    align-items: center;
}

.admin-hours-day {
    font-weight: 700;
    color: #fff;
}

.admin-hours-row input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
    color: #fff;
    font: inherit;
}

.admin-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.admin-gallery-item {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
}

.admin-gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 10px;
}

.admin-gallery-item p {
    margin: 0;
    font-size: .92rem;
    color: var(--muted);
}

.admin-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
}

@media (max-width: 900px) {
    .admin-grid-2,
    .admin-grid-3 {
        grid-template-columns: 1fr;
    }

    .admin-hours-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .admin-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.admin-card-wide {
	margin-top: 20px
}

.admin-card h2,
.gallery-admin h2 {
	margin-top: 0
}

.admin-card label,
.upload-form label {
	display: grid;
	gap: 8px;
	font-weight: 600;
	margin-bottom: 14px
}

.hours-admin {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px 18px;
	margin-bottom: 20px
}

.gallery-admin-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-top: 20px
}

.gallery-admin-card img {
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 18px;
	margin-bottom: 12px
}

.gallery-admin-card p,
.muted {
	color: var(--muted)
}

.upload-form {
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    gap: 16px;
    align-items: end;
}

@media (max-width: 760px) {
    .upload-form {
        grid-template-columns: 1fr;
    }
}

.upload-form .admin-actions {
    margin-top: 0;
}

.admin-login {
	width: min(480px, 100%);
	margin: 8vh auto;
	padding: 28px
}

.admin-gallery-item form {
    margin-top: 12px;
}

.admin-gallery-item .btn {
    width: auto;
}

.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .8s ease, transform .8s ease
}

.reveal.is-visible {
	opacity: 1;
	transform: none
}

.delay-1 {
	transition-delay: .12s
}

.delay-2 {
	transition-delay: .24s
}

@media (max-width: 1100px) {

	.hero-top,
	.gallery-premium,
	.engagement-strip,
	.split-intro,
	.info-grid,
	.contact-grid,
	.signature-grid,
	.admin-form-grid {
		grid-template-columns: 1fr
	}


	.hero h1 {
		max-width: 11ch
	}

	.hero-cards {
		grid-template-columns: repeat(2, 1fr)
	}

	.hero-visual-card {
		min-height: 520px
	}

	.gallery-main img {
		min-height: 520px
	}

	.gallery-header {
		grid-template-columns: 1fr
	}

	.gallery-admin-grid {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media (max-width: 760px) {
	.menu-toggle {
		display: inline-flex
	}

	.nav {
		position: absolute;
		top: 100%;
		left: 16px;
		right: 16px;
		display: none;
		flex-direction: column;
		align-items: flex-start;
		padding: 18px;
		border-radius: 24px;
		background: rgba(7, 13, 24, .95);
		border: 1px solid rgba(255, 255, 255, .08)
	}

	.nav.is-open {
		display: flex
	}

	.hero-top {
		grid-template-columns: 1fr;
		gap: 28px
	}

	.hero {
		padding-top: 48px
	}

	.hero h1 {
		font-size: 3.8rem
	}

	.section {
		padding: 80px 0
	}

	.section-head h2,
	.split-intro h2,
	.contact-copy h2 {
		font-size: 2.8rem
	}

	.hero-cards,
	.gallery-thumbs,
	.hours-admin,
	.gallery-admin-grid,
	.signature-grid {
		grid-template-columns: 1fr
	}

	.gallery-main img {
		min-height: 420px
	}

	.container {
		width: min(100% - 20px, 1180px)
	}

	.brand span {
		display: none
	}

	.footer-wrap,
	.admin-header,
	.upload-form {
		flex-direction: column;
		align-items: flex-start
	}
}


/* =========================
   PACK ANIMATIONS PREMIUM
========================= */

/* Mouvement doux global */
:root {
    --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
    --dur-fast: 0.22s;
    --dur-med: 0.38s;
    --dur-slow: 0.7s;
}

/* Apparition au scroll */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity var(--dur-slow) var(--ease-premium),
        transform var(--dur-slow) var(--ease-premium);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

/* Boutons */
.btn {
    transition:
        transform var(--dur-fast) var(--ease-premium),
        box-shadow var(--dur-fast) var(--ease-premium),
        background var(--dur-fast) var(--ease-premium),
        border-color var(--dur-fast) var(--ease-premium);
    will-change: transform;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn-gold:hover {
    box-shadow: 0 14px 36px rgba(223, 171, 79, 0.28);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.16);
}

/* Menu */
.nav > a:not(.btn) {
    position: relative;
    transition: color var(--dur-fast) var(--ease-premium);
}

.nav > a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 4px;
    height: 2px;
    border-radius: 999px;
    background: rgba(223, 171, 79, 0.9);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--dur-med) var(--ease-premium);
}

.nav > a:not(.btn):hover::after,
.nav > a:not(.btn):focus-visible::after {
    transform: scaleX(1);
}

/* Cartes globales */
.hero-cards article,
.signature-card,
.engagement-card,
.review-card,
.card-soft,
.contact-note,
.gallery-side-panel,
.info-grid > *,
.contact-grid > * {
    transition:
        transform var(--dur-med) var(--ease-premium),
        box-shadow var(--dur-med) var(--ease-premium),
        border-color var(--dur-med) var(--ease-premium),
        background var(--dur-med) var(--ease-premium);
    will-change: transform;
}

.hero-cards article:hover,
.signature-card:hover,
.engagement-card:hover,
.review-card:hover,
.card-soft:hover,
.contact-note:hover,
.gallery-side-panel:hover,
.info-grid > *:hover,
.contact-grid > *:hover {
    transform: translateY(-6px);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
    border-color: rgba(255, 255, 255, 0.14);
}

.footer-socials {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}

.footer-socials img {
    width: 20px;
    height: 20px;
    max-width: 20px;
    max-height: 20px;
    object-fit: contain;
    display: block;
}

.footer-socials a {
    transition: all 0.25s ease;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}


.social-links a,
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

.social-row-icons a:hover,
.social-links a:hover,
.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.social-row-icons img,
.social-links img,
.footer-social img {
    width: 20px;
    height: 20px;
}

/* Mettre en avant la carte baguette */
.hero-cards article:first-child:hover {
    box-shadow:
        0 0 0 1px rgba(223, 171, 79, 0.18),
        0 34px 80px rgba(0, 0, 0, 0.42),
        0 0 28px rgba(223, 171, 79, 0.18);
}

/* Galerie principale */
.gallery-main {
    transition:
        transform var(--dur-med) var(--ease-premium),
        box-shadow var(--dur-med) var(--ease-premium);
}

.gallery-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
}

.gallery-main img {
    transition: transform 0.6s var(--ease-premium), filter 0.4s var(--ease-premium);
}

.gallery-main:hover img {
    transform: scale(1.025);
}

/* Miniatures galerie */
.thumb {
    transition:
        transform var(--dur-fast) var(--ease-premium),
        box-shadow var(--dur-fast) var(--ease-premium),
        border-color var(--dur-fast) var(--ease-premium),
        opacity var(--dur-fast) var(--ease-premium);
}

.thumb:hover {
    transform: translateY(-4px);
    border-color: rgba(223, 171, 79, 0.35);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}

.thumb.is-active {
    border-color: rgba(223, 171, 79, 0.55);
    box-shadow: 0 0 0 1px rgba(223, 171, 79, 0.14);
}

/* Réseaux sociaux */
.social-row-icons a,
.socials a {
    transition:
        transform var(--dur-fast) var(--ease-premium),
        box-shadow var(--dur-fast) var(--ease-premium),
        background var(--dur-fast) var(--ease-premium),
        border-color var(--dur-fast) var(--ease-premium);
}

.social-row-icons a:hover,
.socials a:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.social-row-icons a:nth-child(1):hover,
.socials a:nth-child(1):hover {
    box-shadow: 0 0 22px rgba(24, 119, 242, 0.35);
}

.social-row-icons a:nth-child(2):hover,
.socials a:nth-child(2):hover {
    box-shadow: 0 0 22px rgba(221, 42, 123, 0.35);
}

.social-row-icons a:nth-child(3):hover,
.socials a:nth-child(3):hover {
    box-shadow: 0 0 22px rgba(254, 44, 85, 0.28);
}

/* Formulaire */
.contact-form input,
.contact-form textarea {
    transition:
        border-color var(--dur-fast) var(--ease-premium),
        box-shadow var(--dur-fast) var(--ease-premium),
        background var(--dur-fast) var(--ease-premium),
        transform var(--dur-fast) var(--ease-premium);
    outline: none;
}

.contact-form input:hover,
.contact-form textarea:hover {
    border-color: rgba(255, 255, 255, 0.16);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(223, 171, 79, 0.6);
    box-shadow: 0 0 0 2px rgba(223, 171, 79, 0.14);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

.contact-form button {
    transition:
        transform var(--dur-fast) var(--ease-premium),
        box-shadow var(--dur-fast) var(--ease-premium);
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(223, 171, 79, 0.24);
}

.contact-form button:active {
    transform: scale(0.98);
}

/* Lightbox */
.lightbox {
    animation: lightboxFadeIn 0.25s var(--ease-premium);
}

.lightbox img {
    animation: lightboxZoomIn 0.3s var(--ease-premium);
}

@keyframes lightboxFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes lightboxZoomIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Respect accessibilité */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}