:root {
	--color-background: #3a3529;
	--color-umber: #7a4a2d;
	--color-sienna: #a2613f;
	--color-saffron: #f2b749;
	--color-cream: #f5ebe0;
	--color-muted: #d5c4b2;
	--color-deep: #140c08;
	--color-success: #6ea57b;
	--color-danger: #c15b5b;
	--color-info: #b1976b;
	--max-width: 1080px;
	--shadow-soft: 0 30px 60px rgba(0, 0, 0, 0.25);
	--shadow-light: 0 8px 25px rgba(0, 0, 0, 0.18);
	--radius: 18px;
	--font-heading: "Playfair Display", serif;
	--font-body: "Raleway", sans-serif;
	--accent-gradient: linear-gradient(120deg, rgba(242, 190, 81, 0.95), rgba(242, 138, 60, 0.9), rgba(194, 92, 52, 0.85));
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--font-body);
	background-color: var(--color-background);
	color: var(--color-cream);
	line-height: 1.65;
	background-image: url('../img/old-rome.jpg');
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	min-height: 100vh;
	position: relative;
}

@keyframes saffronPulse {
	0% {
		background-position: 0% 50%;
		text-shadow: 0 0 18px rgba(242, 190, 81, 0.35);
	}
	50% {
		background-position: 100% 50%;
		text-shadow: 0 0 26px rgba(242, 147, 63, 0.5);
	}
	100% {
		background-position: 0% 50%;
		text-shadow: 0 0 18px rgba(242, 190, 81, 0.35);
	}
}

.accent-glow {
	background: var(--accent-gradient);
	background-size: 220% 220%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: saffronPulse 8s ease infinite;
	text-shadow: 0 0 16px rgba(242, 176, 73, 0.35);
}

.accent-glow[data-static] {
	animation: none;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(160deg, rgba(58, 53, 41, 0.85), rgba(20, 12, 8, 0.95));
	z-index: -1;
}

a {
	color: var(--color-saffron);
	text-decoration: none;
}

a:hover {
	color: var(--color-muted);
}

img {
	max-width: 100%;
	display: block;
}

.container {
	width: min(92%, var(--max-width));
	margin: 0 auto;
}

.page-content {
	padding-bottom: 6rem;
}

.corner-decoration {
	position: absolute;
	width: clamp(80px, 15vw, 125px);
	height: clamp(80px, 15vw, 125px);
	background-image: url('../img/kose.png');
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 2;
	pointer-events: none;
	opacity: 0.75;
}

.corner-decoration.top-left {
    top: 0;
    left: 0;
}

.corner-decoration.top-right {
    top: 0;
    right: 0;
    transform: rotate(90deg);
}

.corner-decoration.bottom-left {
    bottom: 0;
    left: 0;
    transform: rotate(-90deg);
}

.corner-decoration.bottom-right {
    bottom: 0;
    right: 0;
    transform: rotate(180deg);
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 20;
	background: rgba(40, 35, 25, 0.75);
	backdrop-filter: blur(4px);
	border-bottom: 1px solid rgba(242, 183, 73, 0.15);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
}

.branding {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.brand-mark {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.brand-logo {
	width: 80px;
	height: 50px;
	display: grid;
	place-items: center;
}

.brand-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	mix-blend-mode: screen;
}

.brand-text {
	display: flex;
	flex-direction: column;
	font-family: var(--font-heading);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.brand-name {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--color-cream);
}

.brand-tagline {
	font-size: 0.7rem;
	opacity: 0.7;
}

.site-nav ul {
	list-style: none;
	display: flex;
	gap: 1.5rem;
	margin: 0;
	padding: 0;
}

.site-nav a {
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: clamp(0.7rem, 0.6rem + 0.25vw, 0.88rem);
}

/* Hero */
.hero {
	position: relative;
	min-height: 72vh;
	display: flex;
	align-items: flex-end;
	background-size: cover;
	background-position: center;
	padding: 8rem 0 6rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero .overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(200deg, rgba(15, 9, 6, 0.6), rgba(122, 74, 45, 0.3));
	mix-blend-mode: multiply;
}

.hero-content {
	position: relative;
	max-width: 560px;
	display: grid;
	gap: 1rem;
	padding: 2rem;
	background: rgba(20, 12, 8, 0.75);
	border-radius: var(--radius);
	backdrop-filter: blur(3px);
	box-shadow: var(--shadow-soft);
}

.hero-kicker {
	font-size: 0.75rem;
	letter-spacing: 0.5em;
	text-transform: uppercase;
	color: var(--color-saffron);
}

.hero h1 {
	font-family: var(--font-heading);
	font-size: clamp(2.8rem, 4vw, 3.6rem);
	margin: 0;
}

.hero p {
	font-size: 1rem;
	color: var(--color-muted);
}

.hero-cta {
	display: inline-block;
	padding: 0.85rem 1.8rem;
	background: var(--color-saffron);
	color: #20130d;
	border-radius: 999px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	box-shadow: var(--shadow-light);
}

.hero-cta:hover {
	background: #f0c56f;
	color: #1a1009;
}

/* Intro */
.process {
	margin: 5rem auto;
	display: grid;
	gap: 3.5rem;
}

.process-header {
	text-align: center;
	display: grid;
	gap: 1rem;
	max-width: 640px;
	margin: 0 auto;
}

.process-kicker {
	font-size: 0.78rem;
	letter-spacing: 0.5em;
	text-transform: uppercase;
	color: rgba(242, 183, 73, 0.85);
}

.process-header p {
	margin: 0;
	color: rgba(255, 244, 231, 0.85);
}

.process-grid {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.process-step {
	background: rgba(27, 16, 11, 0.82);
	border-radius: calc(var(--radius) + 6px);
	border: 1px solid rgba(242, 183, 73, 0.16);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
	overflow: hidden;
	display: grid;
	grid-template-rows: minmax(220px, 1fr) auto;
}

.process-media {
	position: relative;
	margin: 0;
	overflow: hidden;
	background: linear-gradient(160deg, rgba(242, 183, 73, 0.15), rgba(162, 97, 63, 0.15));
}

.process-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.process-step:hover .process-media img,
.process-step:focus-within .process-media img {
	transform: scale(1.05);
}

.process-placeholder {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: repeating-linear-gradient(135deg, rgba(242, 183, 73, 0.12) 0, rgba(242, 183, 73, 0.12) 12px, rgba(26, 16, 10, 0.18) 12px, rgba(26, 16, 10, 0.18) 24px);
	color: rgba(242, 183, 73, 0.65);
	font-family: var(--font-heading);
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 1rem;
}

.process-body {
	padding: 2.25rem 2.2rem;
	display: grid;
	gap: 1.1rem;
}

.process-step-index {
	font-size: 0.75rem;
	letter-spacing: 0.6em;
	text-transform: uppercase;
	color: rgba(242, 183, 73, 0.55);
}

.process-body p {
	margin: 0;
	color: rgba(255, 244, 231, 0.82);
	line-height: 1.8;
}

.process-body ul {
	margin: 0;
	padding-left: 1.1rem;
	display: grid;
	gap: 0.45rem;
	color: var(--color-muted);
}

.process-footer {
	text-align: center;
	color: rgba(255, 244, 231, 0.7);
	max-width: 720px;
	margin: 0 auto;
}

.process-footer a {
	color: var(--color-saffron);
	font-weight: 600;
}

/* Highlight strip */
.highlight-strip {
	padding: 4rem 0;
	background: linear-gradient(180deg, rgba(26, 16, 10, 0.75), rgba(20, 12, 8, 0.85));
	border-block: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight-strip h2 {
	font-family: var(--font-heading);
	margin-bottom: 2rem;
	text-align: center;
}

.design-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.design-card {
	background: rgba(26, 16, 10, 0.75);
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid rgba(242, 183, 73, 0.15);
	box-shadow: var(--shadow-light);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.design-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
}

.design-image {
	aspect-ratio: 4 / 5;
	overflow: hidden;
}

.design-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.design-body {
	padding: 1.5rem;
}

.design-body h3 {
	font-family: var(--font-heading);
	margin: 0 0 0.6rem;
}

.design-meta {
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-muted);
}

.cta-center {
	text-align: center;
	margin-top: 2.5rem;
}

.ghost-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: clamp(0.6rem, 0.52rem + 0.6vw, 0.85rem) clamp(1.1rem, 0.9rem + 1.4vw, 2.2rem);
	border-radius: 999px;
	border: 1px solid var(--color-saffron);
	text-transform: uppercase;
	letter-spacing: clamp(0.08em, 0.07em + 0.04vw, 0.15em);
	font-weight: 600;
	font-size: clamp(0.72rem, 0.64rem + 0.4vw, 0.9rem);
	max-width: 100%;
	text-align: center;
	gap: 0.4rem;
	flex-wrap: wrap;
	word-break: break-word;
	overflow-wrap: anywhere;
}

.ghost-button:hover {
	background: rgba(242, 183, 73, 0.12);
}

/* Story strip */
.story-strip {
	padding: 4rem 0;
}

.story-inner {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	align-items: center;
}

.story-text h2 {
	font-family: var(--font-heading);
	font-size: 2.4rem;
	margin-top: 0;
}

.story-gallery {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.story-gallery figure {
	margin: 0;
	background: rgba(26, 16, 10, 0.75);
	padding: 0.75rem;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	text-align: center;
}

.story-gallery figcaption {
	margin-top: 0.5rem;
	font-size: 0.75rem;
	color: var(--color-muted);
}

/* Contact */
.contact-hero {
	padding: 4rem 0 2rem;
	display: grid;
	justify-items: center;
	text-align: center;
}

.contact-hero header {
	max-width: 640px;
	display: grid;
	gap: 1rem;
}

.contact-kicker {
	font-size: 0.78rem;
	letter-spacing: 0.45em;
	text-transform: uppercase;
	color: rgba(242, 183, 73, 0.85);
}

.contact-hero p {
	margin: 0;
	color: rgba(255, 244, 231, 0.85);
}

.contact-wrapper {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	align-items: start;
	margin-bottom: 5rem;
}

.contact-card {
	background: rgba(26, 16, 10, 0.82);
	border-radius: calc(var(--radius) + 4px);
	border: 1px solid rgba(242, 183, 73, 0.18);
	box-shadow: var(--shadow-light);
	padding: clamp(2rem, 4vw, 2.75rem);
}

.contact-form {
	display: grid;
	gap: 1.6rem;
}

.contact-form .form-grid {
	display: grid;
	gap: 1.4rem;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-form label {
	display: grid;
	gap: 0.65rem;
}

.contact-form span,
.contact-form strong {
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(242, 183, 73, 0.85);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	background: rgba(21, 13, 9, 0.78);
	border: 1px solid rgba(242, 183, 73, 0.26);
	border-radius: 12px;
	padding: 0.75rem 0.9rem;
	color: var(--color-cream);
	font-family: inherit;
	font-size: 1rem;
	width: 100%;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.35), 0 18px 32px rgba(0, 0, 0, 0.28);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form select {
	appearance: none;
	background: linear-gradient(135deg, rgba(26, 16, 10, 0.95), rgba(17, 10, 7, 0.9));
	background-image: linear-gradient(45deg, transparent 50%, rgba(242, 183, 73, 0.75) 50%), linear-gradient(135deg, rgba(242, 183, 73, 0.75) 50%, transparent 50%);
	background-position: calc(100% - 18px) calc(50% - 5px), calc(100% - 12px) calc(50% - 5px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-right: 2.5rem;
}

.contact-form select:hover,
.contact-form input:hover,
.contact-form textarea:hover {
	border-color: rgba(242, 183, 73, 0.45);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.28), 0 20px 36px rgba(0, 0, 0, 0.32);
	background: rgba(24, 14, 9, 0.84);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: rgba(242, 183, 73, 0.65);
	box-shadow: 0 0 0 3px rgba(242, 183, 73, 0.18), 0 22px 40px rgba(0, 0, 0, 0.35);
}

.contact-form select option {
	background-color: rgba(24, 14, 9, 0.96);
	color: var(--color-cream);
}

.contact-form select option:disabled {
	color: rgba(255, 244, 231, 0.45);
}

.contact-form small {
	color: rgba(255, 244, 231, 0.55);
	font-size: 0.75rem;
}

.contact-submit {
	justify-self: start;
	padding-inline: 2.8rem;
}

.contact-sidebar {
	display: grid;
	gap: 1.75rem;
}

.contact-info-card,
.contact-note {
	background: rgba(19, 11, 6, 0.65);
	border-radius: 20px;
	border: 1px solid rgba(242, 183, 73, 0.16);
	padding: 2rem;
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.contact-info-card ul {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: grid;
	gap: 1rem;
}

.contact-info-card li {
	display: grid;
	gap: 0.35rem;
	color: rgba(255, 244, 231, 0.85);
}

.contact-info-card a {
	color: var(--color-saffron);
	font-weight: 600;
}

.contact-note p {
	margin: 0;
	color: rgba(255, 244, 231, 0.7);
	line-height: 1.6;
}

/* Audio toggle */
.audio-toggle {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 120;
}

.audio-toggle__button {
	display: grid;
	grid-auto-flow: column;
	align-items: center;
	gap: 0.75rem;
	padding: 0.65rem 1.2rem;
	border-radius: 999px;
	border: 1px solid rgba(242, 183, 73, 0.3);
	background: rgba(19, 11, 6, 0.65);
	color: var(--color-cream);
	font-family: var(--font-body);
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(6px);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.audio-toggle__button[aria-pressed="true"] {
	border-color: rgba(242, 183, 73, 0.6);
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.audio-toggle__button:hover {
	transform: translateY(-2px);
}

.audio-toggle__icon {
	font-size: 1.2rem;
	color: rgba(242, 183, 73, 0.85);
}

/* Chat widget */
.chat-widget {
	position: fixed;
	bottom: 1.5rem;
	left: 1.5rem;
	z-index: 125;
	display: grid;
	gap: 0.5rem;
	align-items: end;
}

.chat-widget__toggle {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid rgba(242, 183, 73, 0.35);
	background: rgba(17, 10, 7, 0.72);
	color: var(--color-cream);
	cursor: pointer;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(6px);
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.chat-widget__toggle:hover,
.chat-widget__toggle:focus-visible {
	border-color: rgba(242, 183, 73, 0.6);
	transform: translateY(-1px);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.chat-widget__toggle-icon {
	font-size: 1rem;
}

.chat-widget__panel {
	width: min(82vw, 300px);
	background: rgba(17, 10, 7, 0.94);
	border-radius: 16px;
	border: 1px solid rgba(242, 183, 73, 0.16);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
	overflow: hidden;
	display: grid;
	grid-template-rows: auto auto minmax(0, 1fr) auto;
}

.chat-widget__panel[hidden] {
	display: none !important;
}

.chat-widget__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 1rem;
	background: rgba(25, 15, 10, 0.82);
	border-bottom: 1px solid rgba(242, 183, 73, 0.12);
}

.chat-widget__title {
	display: grid;
	gap: 0.15rem;
}

.chat-widget__title strong {
	font-family: var(--font-heading);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.82rem;
}

.chat-widget__title span {
	font-size: 0.68rem;
	color: rgba(255, 244, 231, 0.58);
}

.chat-widget__close {
	background: transparent;
	border: none;
	color: rgba(255, 244, 231, 0.65);
	font-size: 1.35rem;
	line-height: 1;
	cursor: pointer;
}

.chat-widget__tabs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border-bottom: 1px solid rgba(242, 183, 73, 0.12);
}

.chat-widget__tab {
	background: transparent;
	border: none;
	padding: 0.6rem;
	color: rgba(255, 244, 231, 0.7);
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	cursor: pointer;
}

.chat-widget__tab.is-active {
	color: var(--color-saffron);
	border-bottom: 2px solid rgba(242, 183, 73, 0.6);
}

.chat-widget__body {
	position: relative;
	background: rgba(21, 13, 9, 0.9);
	padding: 0.75rem 0.85rem;
	display: grid;
}


.chat-widget__messages {
	display: none;
	gap: 0.2rem;
	max-height: 210px;
	overflow-y: auto;
	padding-right: 0.15rem;
	scrollbar-width: thin;
	scrollbar-color: rgba(242, 183, 73, 0.45) rgba(21, 13, 9, 0.6);
}

.chat-widget__messages.is-active {
	display: grid;
}

.chat-widget__messages::-webkit-scrollbar {
	width: 8px;
}

.chat-widget__messages::-webkit-scrollbar-track {
	background: rgba(21, 13, 9, 0.65);
	border-radius: 999px;
}

.chat-widget__messages::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, rgba(242, 183, 73, 0.8), rgba(162, 97, 63, 0.85));
	border-radius: 999px;
	border: 2px solid rgba(21, 13, 9, 0.9);
}

.chat-widget__messages::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, rgba(242, 183, 73, 0.95), rgba(162, 97, 63, 0.95));
}

.chat-message {
	display: flex;
	align-items: baseline;
	gap: 0.45rem;
	background: rgba(0, 0, 0, 0.15);
	border-radius: 12px;
	padding: 0.45rem 0.6rem;
	border: 1px solid rgba(242, 183, 73, 0.1);
	font-size: 0.78rem;
}

.chat-message--self {
	justify-self: end;
	background: rgba(242, 183, 73, 0.18);
	border-color: rgba(242, 183, 73, 0.32);
}

.chat-message--admin {
	border-color: rgba(242, 183, 73, 0.28);
	background: rgba(242, 183, 73, 0.12);
}

.chat-message__bubble {
	display: flex;
	align-items: baseline;
	gap: 0.35rem;
	width: 100%;
}

.chat-message__author {
	font-weight: 600;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: rgba(255, 244, 231, 0.7);
}

.chat-message--self .chat-message__author {
	color: rgba(31, 20, 13, 0.75);
}

.chat-message__text {
	flex: 1;
	color: rgba(255, 244, 231, 0.88);
	white-space: pre-wrap;
	word-break: break-word;
}

.chat-message__time {
	font-size: 0.65rem;
	color: rgba(255, 244, 231, 0.55);
	margin-left: auto;
	white-space: nowrap;
}

.chat-widget__form {
	display: grid;
	gap: 0.6rem;
	padding: 0.7rem 0.85rem 0.85rem;
	background: rgba(21, 13, 9, 0.86);
	border-top: 1px solid rgba(242, 183, 73, 0.1);
}

.chat-widget__field {
	display: grid;
	gap: 0.35rem;
}

.chat-widget__field label {
	font-size: 0.66rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(242, 183, 73, 0.7);
}

.chat-widget__field input,
.chat-widget__field textarea {
	background: rgba(0, 0, 0, 0.22);
	border: 1px solid rgba(242, 183, 73, 0.15);
	border-radius: 10px;
	padding: 0.55rem 0.7rem;
	color: var(--color-cream);
	font-family: inherit;
	font-size: 0.78rem;
}

.chat-widget__field textarea {
	resize: vertical;
	min-height: 58px;
}

.chat-widget__actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.5rem;
}

.chat-widget__status {
	font-size: 0.64rem;
	color: rgba(255, 244, 231, 0.6);
	min-height: 0.9em;
}

.chat-widget__send {
	padding: 0.45rem 1.15rem;
	border-radius: 999px;
	border: 1px solid rgba(242, 183, 73, 0.38);
	background: rgba(242, 183, 73, 0.22);
	color: var(--color-cream);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 600;
	font-size: 0.7rem;
	cursor: pointer;
}

.chat-widget__send:hover,
.chat-widget__send:focus-visible {
	background: rgba(242, 183, 73, 0.3);
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* About page */
.about-wrapper {
	display: grid;
	grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
	gap: 3rem;
	padding: 4rem 0;
	align-items: start;
}

.about-card {
	background: rgba(26, 16, 10, 0.78);
	border: 1px solid rgba(242, 183, 73, 0.14);
	border-radius: var(--radius);
	box-shadow: var(--shadow-light);
	padding: 2.5rem;
	display: grid;
	gap: 1.5rem;
}

.about-card h1 {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(2.1rem, 3vw, 2.8rem);
}

.about-card p {
	margin: 0;
	line-height: 1.85;
	color: rgba(255, 244, 231, 0.88);
}

.about-highlights {
	margin-top: 1rem;
	display: grid;
	gap: 1.75rem;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.about-highlights h3 {
	margin: 0 0 0.75rem;
	font-family: var(--font-heading);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.about-highlights ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.45rem;
}

.about-highlights li {
	position: relative;
	padding-left: 1.1rem;
	color: var(--color-muted);
}

.about-highlights li::before {
	content: '\2022';
	position: absolute;
	left: 0;
	color: var(--color-saffron);
}

.about-aside {
	display: grid;
	gap: 1.5rem;
}

.quote-card,
.contact-card {
	background: rgba(19, 11, 6, 0.65);
	border: 1px solid rgba(242, 183, 73, 0.16);
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.quote-card blockquote {
	margin: 0;
	font-size: 1.4rem;
	line-height: 1.6;
	font-family: var(--font-heading);
}

.quote-card cite {
	display: block;
	margin-top: 1rem;
	font-style: normal;
	font-size: 0.85rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-muted);
}

.contact-card h3 {
	margin-top: 0;
	font-family: var(--font-heading);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.contact-card p {
	margin: 0 0 1.25rem;
	color: var(--color-muted);
}

.contact-card .ghost-button {
	justify-self: start;
}

/* Gallery page */
.page-hero {
	padding: 4rem 0 2rem;
	text-align: center;
}

.page-hero h1 {
	font-family: var(--font-heading);
	font-size: clamp(2.2rem, 3vw, 3rem);
	margin-bottom: 0.8rem;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1.5rem;
	grid-auto-rows: 220px;
	grid-auto-flow: dense;
}

.gallery-item {
	background: rgba(26, 16, 10, 0.75);
	border-radius: var(--radius);
	border: 1px solid rgba(242, 183, 73, 0.18);
	overflow: hidden;
	position: relative;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover,
.gallery-item:focus-within {
	transform: translateY(-6px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.gallery-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.gallery-card:focus-visible {
	outline: 2px solid var(--color-saffron);
	outline-offset: 4px;
}

.gallery-thumb {
	flex: 1 1 auto;
	position: relative;
	overflow: hidden;
}

.gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gallery-info {
	padding: 1.15rem 1.45rem 1.6rem;
	background: linear-gradient(182deg, rgba(17, 10, 7, 0.78) 0%, rgba(17, 10, 7, 0.58) 100%);
	backdrop-filter: blur(8px);
	display: grid;
	gap: 0.65rem;
	border-top: 1px solid rgba(242, 183, 73, 0.16);
	box-shadow: inset 0 18px 32px rgba(0, 0, 0, 0.18);
}

.gallery-item:hover .gallery-thumb img,
.gallery-item:focus-within .gallery-thumb img {
	transform: scale(1.04);
}

.gallery-info h2 {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(1.05rem, 2.2vw, 1.35rem);
	line-height: 1.25;
	text-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

.gallery-info p {
	margin: 0;
	color: rgba(245, 235, 224, 0.7);
	font-size: 0.92rem;
	line-height: 1.55;
	letter-spacing: 0.01em;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.gallery-meta {
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(242, 183, 73, 0.7);
	display: flex;
	gap: 0.75rem;
}

.gallery-item--portrait,
.gallery-item--square {
	grid-row: span 2;
}

.gallery-item--wide {
	grid-column: span 2;
}

.gallery-item.fade-in-up {
	will-change: transform, opacity;
}

.gallery-modal {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	z-index: 200;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s ease;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.gallery-modal.is-open {
	opacity: 1;
	pointer-events: auto;
}

.gallery-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(15, 9, 6, 0.8);
	backdrop-filter: blur(8px);
}

.gallery-modal__content {
	position: relative;
	display: grid;
	grid-template-columns: minmax(280px, 1.4fr) minmax(220px, 1fr);
	gap: 2rem;
	max-width: min(960px, 92vw);
	max-height: 88vh;
	padding: 2rem 2.5rem;
	background: rgba(24, 16, 10, 0.9);
	border: 1px solid rgba(242, 183, 73, 0.25);
	border-radius: 24px;
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}


.gallery-modal__image {
	border-radius: 18px;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}

.gallery-modal__image-frame {
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: inherit;
}

.gallery-modal__image-frame img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.6s ease;
	cursor: zoom-in;
}

@media (hover: hover) {
	.gallery-modal__image-frame:hover img {
		transform: scale(1.08);
	}
}

.gallery-modal__body {
	display: grid;
	gap: 1rem;
	align-content: start;
	overflow-y: auto;
	padding-right: 0.25rem;
}

.gallery-modal__header {
	display: grid;
	gap: 0.35rem;
}

.gallery-modal__date {
	font-size: 0.85rem;
	color: var(--color-muted);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.gallery-modal__description {
	line-height: 1.7;
	color: rgba(255, 244, 231, 0.88);
}

.gallery-modal__stats {
	display: flex;
	gap: 1.5rem;
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-muted);
}

.gallery-modal__interaction {
	padding: 1rem;
	border: 1px solid rgba(242, 183, 73, 0.12);
	border-radius: 14px;
	background: rgba(19, 11, 6, 0.35);
}

.like-form {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
}

.like-button {
	background: linear-gradient(135deg, rgba(242, 183, 73, 0.2), rgba(242, 183, 73, 0.05));
	border: 1px solid rgba(242, 183, 73, 0.45);
	color: var(--color-cream);
	padding: 0.65rem 1.25rem;
	border-radius: 999px;
	cursor: pointer;
	font-weight: 600;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.like-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
	background: linear-gradient(135deg, rgba(242, 183, 73, 0.35), rgba(242, 183, 73, 0.1));
}

.like-count {
	font-size: 0.9rem;
	color: var(--color-muted);
}

.gallery-modal__comments {
	display: grid;
	gap: 1rem;
	padding: 1.25rem;
	border: 1px solid rgba(242, 183, 73, 0.12);
	border-radius: 14px;
	background: rgba(19, 11, 6, 0.25);
}

.comment-form {
	display: grid;
	gap: 0.75rem;
}

.comment-form input[type="text"] {
	background: rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(242, 183, 73, 0.15);
	border-radius: 10px;
	padding: 0.6rem 0.75rem;
	color: var(--color-cream);
	font-family: inherit;
}

.comment-form input[type="text"]::placeholder,
.comment-form textarea::placeholder {
	color: rgba(255, 244, 231, 0.45);
}

.comment-form textarea {
	background: rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(242, 183, 73, 0.15);
	border-radius: 10px;
	padding: 0.75rem;
	color: var(--color-cream);
	font-family: inherit;
}

.comment-form button {
	justify-self: start;
	padding: 0.55rem 1.2rem;
	border-radius: 999px;
	border: 1px solid rgba(242, 183, 73, 0.45);
	background: rgba(242, 183, 73, 0.15);
	color: var(--color-cream);
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease;
}

.comment-form button:hover {
	transform: translateY(-1px);
	background: rgba(242, 183, 73, 0.28);
}

.comment-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.85rem;
	max-height: 220px;
	overflow-y: auto;
}

.comment-list li {
	background: rgba(0, 0, 0, 0.22);
	padding: 0.85rem;
	border-radius: 12px;
	border: 1px solid rgba(242, 183, 73, 0.12);
	display: grid;
	gap: 0.5rem;
}

.comment-author {
	font-weight: 600;
	color: rgba(242, 183, 73, 0.9);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: 0.8rem;
}

.comment-list p {
	margin: 0;
	color: rgba(255, 244, 231, 0.92);
	white-space: pre-line;
}

.comment-date {
	font-size: 0.8rem;
	color: var(--color-muted);
}

.comment-empty {
	margin: 0;
	font-size: 0.9rem;
	color: var(--color-muted);
}

.gallery-modal__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: rgba(15, 9, 6, 0.6);
	border: 1px solid rgba(242, 183, 73, 0.4);
	color: var(--color-saffron);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.5rem;
	line-height: 1;
	display: grid;
	place-items: center;
}

.gallery-modal__close:hover {
	background: rgba(242, 183, 73, 0.25);
	color: #1f140d;
}

.gallery-modal__close span {
	pointer-events: none;
}

body.modal-open {
	overflow: hidden;
}

.footer-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: center;
	justify-content: space-between;
}

.footer-title {
	margin: 0 0 0.5rem;
	font-family: var(--font-heading);
}

.footer-meta {
	text-align: right;
	color: var(--color-muted);
	font-size: 0.85rem;
}

/* Admin */
.admin-shell {
	background: var(--color-deep);
	min-height: 100vh;
	display: flex;
	color: var(--color-cream);
}

.admin-container {
	display: grid;
	grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
	width: 100%;
	min-height: 100vh;
}

.admin-sidebar {
	background: linear-gradient(200deg, rgba(19, 11, 6, 0.95), rgba(32, 20, 13, 0.95));
	padding: 2rem 1.5rem;
	border-right: 1px solid rgba(242, 183, 73, 0.12);
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.admin-logo {
	font-family: var(--font-heading);
	margin-top: 0;
	color: var(--color-saffron);
}

.admin-sidebar nav {
	flex: 1;
}

.admin-sidebar ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 1rem;
}

.admin-sidebar a {
	color: var(--color-muted);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.75rem;
	font-weight: 600;
}

.admin-content {
	padding: 3rem;
	display: grid;
	gap: 2.5rem;
}

.admin-page-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
}

.admin-summary {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
}

.admin-summary__card {
	background: rgba(26, 16, 10, 0.82);
	border-radius: 20px;
	border: 1px solid rgba(242, 183, 73, 0.18);
	padding: 1.75rem;
	box-shadow: var(--shadow-light);
	display: grid;
	gap: 0.75rem;
}

.admin-summary__label {
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.75rem;
	color: var(--color-muted);
}

.admin-summary__value {
	font-family: var(--font-heading);
	font-size: clamp(1.9rem, 3vw, 2.4rem);
	color: var(--color-cream);
}

.admin-summary__value small {
	display: inline-block;
	margin-left: 0.35rem;
	font-family: inherit;
	font-size: 0.55em;
	color: var(--color-muted);
}

.admin-summary__hint {
	font-size: 0.85rem;
	color: rgba(255, 244, 231, 0.7);
}

.admin-card {
	background: rgba(26, 16, 10, 0.85);
	padding: 2rem;
	border-radius: var(--radius);
	border: 1px solid rgba(242, 183, 73, 0.16);
	box-shadow: var(--shadow-light);
}

.admin-table {
	width: 100%;
	border-collapse: collapse;
}

.admin-table th,
.admin-table td {
	padding: 0.9rem 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	text-align: left;
	vertical-align: top;
}

.admin-table tbody tr:last-child td {
	border-bottom: none;
}

.admin-table th:nth-child(1),
.admin-table td:nth-child(1) {
	width: 30%;
}

.admin-table th:nth-child(7),
.admin-table td:nth-child(7) {
	width: 22%;
}

.admin-table .slug {
	font-size: 0.75rem;
	color: var(--color-muted);
}

.badge {
	display: inline-block;
	padding: 0.25rem 0.6rem;
	border-radius: 999px;
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	background: rgba(110, 165, 123, 0.15);
}

.badge-live {
	background: rgba(242, 183, 73, 0.2);
	color: var(--color-saffron);
}

.badge-pending {
	background: rgba(242, 140, 73, 0.18);
	color: #f3b487;
}

.badge-clear {
	background: rgba(110, 165, 123, 0.12);
	color: rgba(209, 221, 198, 0.9);
}

.badge--muted {
	background: rgba(209, 191, 164, 0.16);
	color: rgba(236, 220, 194, 0.85);
}

.actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.actions form.inline {
	display: inline;
}

.button {
	display: inline-block;
	padding: 0.55rem 1.1rem;
	border-radius: 12px;
	border: 1px solid rgba(242, 183, 73, 0.4);
	background: transparent;
	color: var(--color-saffron);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.7rem;
	cursor: pointer;
}

.button.primary {
	background: linear-gradient(135deg, rgba(242, 183, 73, 0.9), rgba(162, 97, 63, 0.9));
	color: #1f140d;
	border: none;
}

.button.secondary {
	border-color: rgba(209, 191, 164, 0.5);
	color: var(--color-muted);
}

.button.tertiary {
	border-color: rgba(242, 183, 73, 0.25);
	color: var(--color-saffron);
}

.button.danger {
	border-color: rgba(193, 91, 91, 0.45);
	color: #f29b9b;
}

.button.ghost {
	border-color: rgba(242, 183, 73, 0.18);
	color: rgba(255, 244, 231, 0.76);
	background: rgba(26, 16, 10, 0.35);
}

.button.ghost:hover {
	background: rgba(242, 183, 73, 0.1);
}

.form-stacked {
	display: grid;
	gap: 1.2rem;
}

.form-stacked small {
	color: var(--color-muted);
}

.checkbox {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.admin-split {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.admin-comments {
	display: grid;
	gap: 1.2rem;
}

.admin-comment-item {
	border: 1px solid rgba(242, 183, 73, 0.12);
	border-radius: 16px;
	padding: 1.2rem 1.4rem;
	background: rgba(17, 10, 7, 0.65);
	display: grid;
	gap: 0.75rem;
}

.admin-comment-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.75rem;
	font-size: 0.8rem;
	color: var(--color-muted);
}

.admin-comment-meta a {
	color: var(--color-saffron);
	text-decoration: none;
}

.admin-comment-meta a:hover {
	text-decoration: underline;
}

.admin-chat {
	display: grid;
	gap: 2rem;
}

.admin-chat__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1.5rem;
}

.admin-chat__header-actions {
	display: flex;
	gap: 0.75rem;
}

.admin-chat__layout {
	display: grid;
	gap: 2rem;
	grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
}

.admin-chat__aside {
	background: rgba(17, 10, 7, 0.6);
	border: 1px solid rgba(242, 183, 73, 0.12);
	border-radius: 18px;
	padding: 1.5rem;
	display: grid;
	gap: 1rem;
}

.admin-chat__aside-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.admin-chat__aside-count {
	font-size: 0.85rem;
	color: rgba(255, 244, 231, 0.7);
}

.admin-chat__aside-list {
	display: grid;
	gap: 0.75rem;
	max-height: 65vh;
	overflow-y: auto;
	padding-right: 0.25rem;
}

.admin-chat__conversation {
	background: rgba(26, 16, 10, 0.45);
	border: 1px solid rgba(242, 183, 73, 0.16);
	border-radius: 14px;
	padding: 0.9rem 1rem;
	text-align: left;
	color: inherit;
	display: grid;
	gap: 0.35rem;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.admin-chat__conversation.is-active,
.admin-chat__conversation:hover {
	border-color: rgba(242, 183, 73, 0.45);
	background: rgba(242, 183, 73, 0.12);
}

.admin-chat__conversation-title {
	font-weight: 600;
	letter-spacing: 0.03em;
}

.admin-chat__conversation-preview {
	font-size: 0.85rem;
	color: rgba(255, 244, 231, 0.7);
	line-height: 1.4;
}

.admin-chat__conversation-meta {
	display: flex;
	gap: 0.35rem;
	flex-wrap: wrap;
}

.admin-chat__conversation time {
	font-size: 0.75rem;
	color: rgba(255, 244, 231, 0.55);
}

.admin-chat__empty {
	font-size: 0.9rem;
	color: rgba(255, 244, 231, 0.7);
}

.admin-chat__main {
	background: rgba(17, 10, 7, 0.6);
	border: 1px solid rgba(242, 183, 73, 0.12);
	border-radius: 18px;
	padding: 1.5rem;
	display: grid;
	gap: 1.25rem;
}

.admin-chat__tabs {
	display: inline-flex;
	gap: 0.75rem;
}

.admin-chat__tabs button {
	padding: 0.5rem 1rem;
	border-radius: 999px;
	border: 1px solid rgba(242, 183, 73, 0.2);
	background: transparent;
	color: rgba(255, 244, 231, 0.75);
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
}

.admin-chat__tabs button.is-active {
	background: rgba(242, 183, 73, 0.18);
	color: var(--color-saffron);
	border-color: rgba(242, 183, 73, 0.45);
}

.admin-chat__panel {
	display: none;
	gap: 1rem;
}

.admin-chat__panel.is-active {
	display: grid;
}

.admin-chat__panel-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
}

.admin-chat__messages {
	background: rgba(26, 16, 10, 0.6);
	border: 1px solid rgba(242, 183, 73, 0.12);
	border-radius: 16px;
	padding: 1.1rem;
	max-height: 55vh;
	overflow-y: auto;
	display: grid;
	gap: 0.75rem;
}

.admin-chat__form {
	display: grid;
	gap: 0.75rem;
}

.admin-chat__form textarea {
	width: 100%;
	background: rgba(26, 16, 10, 0.55);
	border: 1px solid rgba(242, 183, 73, 0.18);
	border-radius: 12px;
	padding: 0.8rem 1rem;
	color: inherit;
	font: inherit;
	resize: vertical;
	min-height: 120px;
}

.admin-chat__form textarea:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.admin-chat__form-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.admin-chat__status {
	font-size: 0.8rem;
	color: rgba(255, 244, 231, 0.7);
}

.admin-chat__status[data-variant="error"] {
	color: #f29b9b;
}

.admin-chat__status[data-variant="success"] {
	color: #8fdfa0;
}

@media (max-width: 1080px) {
	.admin-chat__layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.admin-chat__aside {
		max-height: none;
	}

	.admin-chat__messages {
		max-height: 45vh;
	}
}

@media (max-width: 720px) {
	.admin-chat__header {
		flex-direction: column;
		align-items: stretch;
	}

	.admin-chat__form-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.admin-chat__status {
		order: 2;
		text-align: right;
	}
}

.admin-comment-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.admin-comment-body {
	margin: 0;
	line-height: 1.6;
}

.admin-comment-item--recent {
	background: rgba(17, 10, 7, 0.55);
}

.current-image {
	display: grid;
	gap: 0.6rem;
	color: var(--color-muted);
}

.alert {
	margin-bottom: 1.5rem;
	padding: 1rem 1.4rem;
	border-radius: 12px;
}

.alert-error {
	background: rgba(193, 91, 91, 0.18);
	border: 1px solid rgba(193, 91, 91, 0.45);
	color: #ffc0c0;
}

.auth-shell {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(circle at 10% 20%, rgba(242, 183, 73, 0.15), transparent 60%), var(--color-deep);
}

.auth-card {
	background: rgba(26, 16, 10, 0.85);
	padding: 2.5rem;
	border-radius: var(--radius);
	width: min(90vw, 420px);
	border: 1px solid rgba(242, 183, 73, 0.18);
	box-shadow: var(--shadow-light);
}

.auth-card label {
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(242, 183, 73, 0.75);
}

.auth-card h1 {
	font-family: var(--font-heading);
	margin-top: 0;
}

.auth-card form {
	display: grid;
	gap: 1rem;
	margin-top: 1.5rem;
}

.auth-card input {
	background: rgba(21, 13, 9, 0.72);
	border: 1px solid rgba(242, 183, 73, 0.22);
	border-radius: 12px;
	padding: 0.75rem 1rem;
	color: var(--color-cream);
	font-family: inherit;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.auth-card input:hover {
	background: rgba(24, 14, 9, 0.82);
	border-color: rgba(242, 183, 73, 0.45);
}

.auth-card input:focus {
	outline: none;
	border-color: rgba(242, 183, 73, 0.65);
	box-shadow: 0 0 0 3px rgba(242, 183, 73, 0.16), 0 20px 34px rgba(0, 0, 0, 0.35);
}

.auth-card input::placeholder {
	color: rgba(255, 244, 231, 0.45);
}

.auth-card button {
	margin-top: 0.5rem;
	padding: 0.75rem 1.8rem;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(242, 183, 73, 0.9), rgba(162, 97, 63, 0.95));
	border: none;
	color: #20130d;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
}

/* Misc */
.not-found {
	text-align: center;
	margin: 6rem auto;
	background: rgba(26, 16, 10, 0.85);
	padding: 3rem;
	border-radius: var(--radius);
	border: 1px solid rgba(242, 183, 73, 0.16);
	width: min(92%, 560px);
}

.not-found h1 {
	font-family: var(--font-heading);
}

/* Animations */
.fade-in-up {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
	transition-delay: var(--animation-delay, 0s);
}

.fade-in-up.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
	.gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
		grid-auto-rows: minmax(200px, auto);
	}

	.contact-wrapper {
		grid-template-columns: 1fr;
	}

	.gallery-item--wide {
		grid-column: span 1;
	}

	.gallery-modal {
		align-items: flex-start;
		padding: 1.75rem 1.25rem;
	}

	.gallery-modal__content {
		grid-template-columns: 1fr;
		max-height: 90vh;
	}

	.about-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.about-aside {
		grid-template-columns: minmax(0, 1fr);
	}

	.site-header {
		background: rgba(40, 35, 25, 0.78);
		backdrop-filter: blur(4px);
	}

	.header-inner {
		flex-direction: column;
		gap: 1.5rem;
	}

	.site-nav ul {
		gap: 0.65rem;
		flex-wrap: nowrap;
		overflow-x: auto;
		justify-content: center;
		row-gap: 0;
		scrollbar-width: thin;
	}

	.site-nav a {
		font-size: clamp(0.62rem, 0.52rem + 0.3vw, 0.78rem);
		letter-spacing: 0.12em;
	}

	.about-wrapper {
		grid-template-columns: 1fr;
	}

	.admin-container {
		grid-template-columns: 1fr;
	}

	.admin-sidebar {
		position: sticky;
		top: 0;
		z-index: 5;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 1.25rem;
		padding: 1.25rem 1.5rem;
	}

	.admin-sidebar ul {
		flex-direction: row;
		display: flex;
		gap: 1rem;
		flex-wrap: wrap;
		justify-content: flex-end;
	}

	.admin-content {
		padding: 2.5rem 1.75rem 3rem;
	}

	.admin-summary {
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	}
}

@media (max-width: 600px) {
	.site-header {
		padding-inline: 0;
	}

	.header-inner {
		gap: 1rem;
		padding: 0.75rem 0;
		width: 100%;
	}

	.brand-logo {
		width: 68px;
		height: 44px;
	}

	.brand-name {
		font-size: 1rem;
	}

	.brand-tagline {
		font-size: 0.62rem;
		letter-spacing: 0.12em;
	}

	.site-nav ul {
		gap: 0.5rem;
		flex-wrap: nowrap;
		overflow-x: auto;
		scrollbar-width: thin;
	}

	.site-nav a {
		font-size: clamp(0.56rem, 0.46rem + 0.28vw, 0.68rem);
	}

	.hero {
		padding: 6rem 0 4rem;
	}

	.hero-content {
		padding: 1.35rem;
		gap: 0.75rem;
	}

	.hero h1 {
		font-size: clamp(2.2rem, 8vw, 2.6rem);
		line-height: 1.1;
	}

	.hero p {
		font-size: 0.92rem;
	}

	.gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
		grid-auto-rows: minmax(180px, auto);
	}

	.ghost-button {
		width: 100%;
	}

	.contact-form .form-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.gallery-info {
		padding: 0.9rem 1.05rem 1.05rem;
		gap: 0.5rem;
		background: linear-gradient(188deg, rgba(17, 10, 7, 0.82) 0%, rgba(17, 10, 7, 0.52) 100%);
		backdrop-filter: blur(6px);
	}

	.gallery-info h2 {
		font-size: 1rem;
	}

	.gallery-info p {
		font-size: 0.85rem;
		-webkit-line-clamp: 4;
		line-clamp: 4;
	}

	.gallery-meta {
		font-size: 0.62rem;
		gap: 0.5rem;
	}

	.gallery-modal__content {
		padding: 1.5rem;
		gap: 1.25rem;
	}

	.about-card,
	.quote-card,
	.contact-card {
		padding: 1.75rem;
	}

	.admin-sidebar {
		flex-direction: column;
		align-items: flex-start;
	}

	.admin-sidebar ul {
		justify-content: flex-start;
	}

	.contact-sidebar {
		width: 100%;
		display: grid;
		gap: 1.25rem;
	}

	.admin-content {
		padding: 2rem 1.25rem 3rem;
	}

	.contact-card,
	.contact-info-card,
	.contact-note {
		padding: 1.75rem;
	}

	.audio-toggle {
		bottom: 1rem;
		right: 1rem;
	}

	.chat-widget {
		bottom: 1rem;
		left: 1rem;
	}

	.design-detail {
		padding: 2rem;
	}

	.interaction-inner {
		grid-template-columns: 1fr;
	}

	.footer-inner {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.site-nav ul {
		flex-wrap: nowrap;
		justify-content: flex-start;
		overflow-x: auto;
		padding-bottom: 0.35rem;
		-webkit-overflow-scrolling: touch;
	}

	.gallery-info {
		padding: 0.8rem 0.85rem 0.95rem;
	}

	.gallery-info h2 {
		font-size: 0.95rem;
	}

	.gallery-info p {
		font-size: 0.8rem;
		line-height: 1.5;
	}

	.about-wrapper {
		gap: 1.5rem;
	}

	.contact-wrapper {
		gap: 1.35rem;
		margin-bottom: 3.5rem;
	}

	.about-card,
	.quote-card,
	.contact-card,
	.contact-info-card,
	.contact-note {
		padding: 1.35rem;
	}

	.site-nav ul::-webkit-scrollbar {
		height: 0;
	}

	.site-nav a {
		font-size: clamp(0.5rem, 0.42rem + 0.26vw, 0.6rem);
		white-space: nowrap;
	}

	.hero {
		padding-top: 5.5rem;
	}

	.hero-content {
		padding: 1.2rem;
	}
}
