@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap");
@import url("editor-style.css");

/* =========================================================
   GLOBAL FONT SETUP
   ========================================================= */

html {
	height: 100%;
	font-family: 'Playfair Display', serif;
	font-size: 62.5%;
	scroll-behavior: smooth;
	background: #f5f4f2;
}

body {
	background: #f5f4f2;
	color: #222;
	font-size: 1.6em;
	letter-spacing: 0.02em;
	line-height: 1.7;
	overflow-x: hidden;
	margin: 0;
}

/* Generic wrapper */
.wrapper {
	width: min(1200px, 92%);
	margin: 0 auto;
	box-sizing: border-box;
}

/* Forms */
input,
textarea,
select,
input[type="submit"],
input[type="button"],
button,
.button {
	font-family: 'Playfair Display', serif;
	vertical-align: middle;
	box-sizing: border-box;
}

/* Keep navigation/buttons clean */
#header nav,
#header nav a,
#header nav ul li a,
.button,
button,
input[type="submit"] {
	font-family: 'Josefin Sans', sans-serif;
}

/* =========================================================
   HEADER
   ========================================================= */

#header {
	width: 100%;
	z-index: 150;
	background: rgba(35, 35, 35, 0.88);
	position: fixed;
	top: 0;
	left: 0;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#header .wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 100px;
	padding: 0.2em 1.8%;
	gap: 2.2em;
	box-sizing: border-box;
}

/* Logo */
.site-title {
	display: flex;
	align-items: center;
	height: 100%;
	flex-shrink: 0;
	padding-left: 0.8em;
}

.site-title a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	text-decoration: none;
}

.site-logo {
	display: block;
	height: 90px;
	width: auto;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
	transform: translateY(2px);
}

/* Navigation */
#mainmenu {
	margin-left: auto;
	display: flex;
	align-items: center;
	height: 100%;
	padding-right: 0.8em;
}

#menu-burger {
	display: none !important;
}

#menu {
	display: flex;
	align-items: center;
}

#header nav ul {
	display: flex;
	align-items: center;
	gap: 2.6em;
	list-style: none;
	margin: 0;
	padding: 0;
}

#header nav ul li a {
	color: #ffffff;
	text-decoration: none;
	font-size: 1em;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	position: relative;
	padding: 0.4em 0;
	transition: color 0.3s ease, transform 0.3s ease;
}

#header nav ul li a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 2px;
	background: #ff5f00;
	transition: width 0.3s ease;
}

#header nav ul li a:hover {
	color: #ffb27f;
	transform: translateY(-1px);
}

#header nav ul li a:hover::after,
#header nav ul li.current-menu-item a::after {
	width: 100%;
}

#header nav ul li.current-menu-item a {
	color: #ff5f00;
}

/* =========================================================
   CONTENT
   ========================================================= */

#content {
	width: 100%;
	padding-top: 180px;
	padding-bottom: 60px;
}

#content .wrapper {
	padding-top: 10px;
}

#content h2 {
	margin: 0 0 30px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 2.1em;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #1f1f1f;
}

/* =========================================================
   PORTFOLIO PAGE
   ========================================================= */

.portfolio-page #content {
	padding-top: 180px;
	padding-bottom: 70px;
}

.portfolio-heading {
	max-width: 860px;
	margin: 0 auto 34px;
	text-align: center;
}

.portfolio-heading h2 {
	margin-bottom: 12px;
	font-size: clamp(2.7rem, 4vw, 4.2rem);
	letter-spacing: 0.08em;
}

.portfolio-heading p {
	margin: 0 auto;
	max-width: 720px;
	font-size: 1.7rem;
	line-height: 1.85;
	color: #66615c;
}

/* =========================================================
   PORTFOLIO FILTERS
   ========================================================= */

#gallery-filter {
	margin-bottom: 34px;
	display: flex;
	justify-content: center;
	width: 100%;
}

#gallery-filter ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 14px;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

#gallery-filter ul li {
	margin: 0;
	padding: 0;
}

#gallery-filter ul li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	text-decoration: none;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 1.05em;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: #7d6f63;
	text-transform: uppercase;
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 999px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
	transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

#gallery-filter ul li a:hover {
	color: #ff5f00;
	border-color: rgba(255, 95, 0, 0.35);
	background: rgba(255, 255, 255, 0.95);
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.07);
}

#gallery-filter ul li a.active {
	color: #ffffff;
	background: linear-gradient(135deg, #ff5f00, #e65400);
	border-color: #ff5f00;
	box-shadow: 0 12px 28px rgba(255, 95, 0, 0.20);
}

/* =========================================================
   GRID CHANGER
   ========================================================= */

#grid-changer {
	margin-bottom: 30px;
}

#grid-changer ul {
	display: flex;
	align-items: center;
	gap: 14px;
	list-style: none;
	margin: 0;
	padding: 0;
}

#grid-changer ul li {
	margin: 0;
	padding: 0;
}

#grid-changer ul li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	text-decoration: none;
	border: 1px solid rgba(0, 0, 0, 0.12);
	background: rgba(255, 255, 255, 0.7);
	border-radius: 8px;
	transition: transform 0.25s ease, border-color 0.25s ease;
}

#grid-changer ul li a:hover,
#grid-changer ul li a.active {
	transform: translateY(-1px);
	border-color: #ff5f00;
}

#grid-changer svg {
	display: block;
	fill: #111;
}

/* =========================================================
   GALLERY
   ========================================================= */

.gallery {
	width: 100%;
	clear: both;
}

.gallery:after {
	content: "";
	display: block;
	clear: both;
}

/* Modern portfolio grid */
.masonry-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	width: 100%;
	margin: 0;
	max-width: 100%;
	box-sizing: border-box;
	align-items: start;
}

.masonry-gallery .gallery-item {
	width: 100% !important;
	max-width: 100% !important;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	float: none !important;
	position: relative !important;
	left: auto !important;
	top: auto !important;
	transform: none !important;
}

.gallery-item {
	box-sizing: border-box;
}

.gallery-icon {
	margin: 0;
	position: relative;
	border-radius: 22px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.92);
	box-shadow:
		0 14px 34px rgba(0, 0, 0, 0.08),
		0 0 24px rgba(80, 80, 80, 0.05);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-icon a {
	display: block;
	position: relative;
	text-decoration: none;
	overflow: hidden;
}

.gallery-icon a::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(20, 20, 20, 0.22), rgba(20, 20, 20, 0.02) 45%, rgba(255, 255, 255, 0) 100%);
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
}

.gallery-icon img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 22px;
	transition: transform 0.55s ease, filter 0.35s ease;
}

.gallery-item:hover .gallery-icon {
	transform: translateY(-6px);
	box-shadow:
		0 20px 42px rgba(0, 0, 0, 0.12),
		0 0 30px rgba(90, 90, 90, 0.07);
}

.gallery-item:hover .gallery-icon a::after {
	opacity: 1;
}

.gallery-item:hover .gallery-icon img {
	transform: scale(1.035);
	filter: brightness(1.02);
}

/* =========================================================
   HOMEPAGE HERO IMAGE BEHIND HEADER
   ========================================================= */

body.home #content {
	padding-top: 0;
	padding-bottom: 0;
}

body.home .gallery.fullscreen-gallery {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 100vh;
	overflow: hidden;
}

body.home .gallery.fullscreen-gallery .gallery-item,
body.home .gallery.fullscreen-gallery .gallery-icon {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	float: none;
	border-radius: 0;
	box-shadow: none;
}

body.home .gallery.fullscreen-gallery img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
}

body.home #header {
	z-index: 200;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.featured-image-header {
	width: 100%;
	height: 320px;
	position: relative;
	overflow: hidden;
	background: #ece7e1;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

#gmap {
	width: 100%;
	height: 100%;
}

.premium-contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.28fr);
	gap: 48px;
	align-items: start;
	padding: 72px 0 92px;
}

.premium-contact-info,
.premium-form-card {
	min-width: 0;
}

.premium-contact-info {
	padding-top: 10px;
}

.contact-kicker {
	display: inline-block;
	margin-bottom: 16px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 1.15rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #9a7a59;
}

.premium-contact-info h1 {
	margin: 0 0 20px;
	font-family: 'Playfair Display', serif;
	font-size: clamp(3.3rem, 4vw, 5.2rem);
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: 0.01em;
	color: #1f1b18;
}

.contact-intro {
	margin: 0 0 30px;
	max-width: 520px;
	font-size: 1.7rem;
	line-height: 1.85;
	color: #5f574f;
}

.contact-info-card {
	width: 100%;
	max-width: 100%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 248, 246, 0.96) 100%);
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 24px;
	padding: 30px 30px 12px;
	box-shadow:
		0 18px 40px rgba(0, 0, 0, 0.07),
		0 0 30px rgba(0, 0, 0, 0.03);
	margin-bottom: 24px;
	box-sizing: border-box;
}

.contact-info-row {
	margin: 0 0 18px;
	padding: 0 0 18px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-info-row:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.contact-label {
	display: block;
	margin-bottom: 7px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 1.15rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #8e8277;
}

.contact-info-row p {
	margin: 0;
	font-size: 1.72rem;
	line-height: 1.7;
	color: #2a2521;
}

.contact-info-row a {
	color: #2a2521;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: color 0.3s ease, border-color 0.3s ease;
}

.contact-info-row a:hover {
	color: #ff5f00;
	border-bottom-color: #ff5f00;
}

.contact-mini-map {
	width: 100%;
	max-width: 100%;
	margin-top: 16px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.08);
	background: #ffffff;
	box-sizing: border-box;
}

.contact-mini-map iframe {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 180px;
	border: 0;
}

.contact-side-note {
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 22px;
	padding: 26px 28px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.contact-side-note h3 {
	margin: 0 0 10px;
	font-family: 'Playfair Display', serif;
	font-size: 2.2rem;
	font-weight: 600;
	line-height: 1.2;
	color: #1f1b18;
}

.contact-side-note p {
	margin: 0;
	font-size: 1.58rem;
	line-height: 1.8;
	color: #62584f;
}

.premium-form-card {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(248, 245, 240, 0.95));
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 28px;
	padding: 38px;
	box-shadow:
		0 28px 60px rgba(0, 0, 0, 0.08),
		0 0 40px rgba(0, 0, 0, 0.03);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-sizing: border-box;
}

.form-heading {
	margin-bottom: 28px;
}

.form-heading h2 {
	margin: 0 0 10px;
	font-family: 'Playfair Display', serif;
	font-size: 3rem;
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: 0.01em;
	text-transform: none;
	color: #1f1b18;
}

.form-heading p {
	margin: 0;
	font-size: 1.58rem;
	line-height: 1.75;
	color: #6b6259;
}

#message {
	margin-bottom: 20px;
}

.premium-contact-form {
	margin: 0;
}

.premium-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px 20px;
}

.premium-field {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.premium-field-full {
	grid-column: 1 / -1;
}

.premium-field label {
	margin-bottom: 10px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 1.18rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #74695d;
}

/* =========================================================
   CONTACT FORM POPUP
   ========================================================= */

.contact-popup {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	z-index: 99999;
	opacity: 1;
	visibility: visible;
	transition: opacity 0.6s ease, visibility 0.6s ease;
	pointer-events: none;
}

.contact-popup.fade-out {
	opacity: 0;
	visibility: hidden;
}

.contact-popup-box {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	border: 2px solid #ff5f00;
	border-radius: 14px;
	padding: 18px 24px;
	width: auto;
	max-width: calc(100% - 32px);
	min-height: auto;
	box-sizing: border-box;
	text-align: center;
	box-shadow:
		0 0 0 3px rgba(255, 95, 0, 0.10),
		0 12px 28px rgba(0, 0, 0, 0.16);
}

.contact-popup-box p {
	margin: 0;
	padding: 0;
	color: #000000;
	font-size: 1.5rem;
	line-height: 1.5;
	text-align: center;
	display: block;
}

.error-popup .contact-popup-box {
	border-color: #d84b3f;
	box-shadow:
		0 0 0 3px rgba(216, 75, 63, 0.10),
		0 12px 28px rgba(0, 0, 0, 0.16);
}

/* UPDATED INPUT STYLE */
.premium-field input,
.premium-field select,
.premium-field textarea {
	width: 100%;
	padding: 16px 18px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid #e0d8cf;
	border-radius: 14px;
	font-family: 'Playfair Display', serif;
	font-weight: 400;
	font-size: 1.55rem;
	line-height: 1.6;
	letter-spacing: 0.01em;
	color: #3a342f;
	transition: all 0.25s ease;
	box-sizing: border-box;
	appearance: none;
	-webkit-appearance: none;
}

.premium-field textarea {
	resize: vertical;
	min-height: 180px;
}

.premium-field input::placeholder,
.premium-field textarea::placeholder {
	font-family: 'Playfair Display', serif;
	font-weight: 400;
	color: #b1a59a;
}

.premium-field select {
	font-weight: 400;
}

.premium-field input:focus,
.premium-field select:focus,
.premium-field textarea:focus {
	outline: none;
	background: #ffffff;
	border-color: #ff5f00;
	box-shadow: 0 0 0 4px rgba(255, 95, 0, 0.08);
}

.premium-form-footer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
	padding-top: 24px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	text-align: center;
}

.form-note {
	margin: 0;
	font-size: 1.5rem;
	line-height: 1.65;
	color: #6f665d;
}

.premium-submit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 190px;
	padding: 15px 28px;
	border: none;
	border-radius: 999px;
	background: linear-gradient(135deg, #ff5f00, #e65400);
	color: #ffffff;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 1.28rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 0 12px 28px rgba(255, 95, 0, 0.20);
	transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.premium-submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(255, 95, 0, 0.24);
	opacity: 0.98;
}

.premium-submit-btn:active {
	transform: translateY(0);
}

/* =========================================================
   TEAM SECTION
   ========================================================= */

.team-gallery {
	display: flex;
	justify-content: center;
	gap: 2em;
	margin: 2em 0 3.5em;
	flex-wrap: wrap;
}

.team-card {
	background: rgba(255, 255, 255, 0.85);
	border-radius: 18px;
	padding: 0.8em;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
	max-width: 265px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
	transform: translateY(-4px);
}

.team-image-wrap {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 3 / 4;
}

.team-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.team-label {
	position: absolute;
	left: 8px;
	bottom: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.32em 0.85em;
	min-height: 28px;
	border-radius: 7px;
	background: rgba(255, 255, 255, 0.18);
	border: 1px solid rgba(210, 210, 210, 0.85);
	backdrop-filter: blur(8px);
	color: #ffffff;
	font-family: 'Great Vibes', cursive;
	font-size: 1.25em;
	line-height: 1;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* =========================================================
   FOOTER
   ========================================================= */

#footer {
	padding: 18px 30px;
	background: #f5f3f1;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

#footer .footer-inner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: min(1200px, 92%);
	margin: 0 auto;
	text-align: center;
	min-height: 28px;
}

#footer p {
	margin: 0;
}

#footer a {
	text-decoration: none;
	color: #222;
}

#footer a:hover {
	color: #ff5f00;
}

.footer-admin-link {
	position: absolute;
	left: 0;
	bottom: 0;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(34, 34, 34, 0.42) !important;
	text-decoration: none;
	transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-admin-link:hover {
	color: rgba(255, 95, 0, 0.72) !important;
}

.entry-social p {
	font-size: 1.4rem;
	color: #555;
}

.entry-social .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 14px;
	margin-right: 8px;
	border-radius: 999px;
	background: rgba(255, 95, 0, 0.08);
	border: 1px solid rgba(255, 95, 0, 0.16);
	color: #b54a00;
	font-size: 1.3rem;
	font-weight: 600;
}

.entry-social .button:hover {
	background: rgba(255, 95, 0, 0.14);
	color: #ff5f00;
}

.social-icons {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin: 10px 0 0;
	padding: 0;
}

.social-icons li {
	margin: 0;
	padding: 0;
}

.social-icons li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	font-size: 18px;
	text-decoration: none;
	color: #ffffff !important;
	transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

/* Facebook */
.social-icons li:nth-child(1) a {
	background: #1877f2;
	box-shadow: 0 6px 14px rgba(24, 119, 242, 0.30);
}

/* Instagram */
.social-icons li:nth-child(2) a {
	background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
	box-shadow: 0 6px 14px rgba(221, 42, 123, 0.30);
}

/* Flickr */
.social-icons li:nth-child(3) a {
	background: linear-gradient(90deg, #ff0084, #0063dc);
	box-shadow: 0 6px 14px rgba(255, 0, 132, 0.28);
}

.social-icons li a:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
	opacity: 0.98;
}

/* =========================================================
   FLOATING BACK TO TOP BUTTON
   ========================================================= */

#back-to-top-btn {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #ff5f00;
	color: #ffffff;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	line-height: 1;
	z-index: 999;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px) scale(0.9);
	transition:
		opacity 0.35s ease,
		transform 0.35s ease,
		visibility 0.35s ease,
		box-shadow 0.25s ease,
		background 0.25s ease;
}

#back-to-top-btn.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}

#back-to-top-btn:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
	background: #e65400;
}

/* =========================================================
   CLIENT LOGIN POPUP
   ========================================================= */

.login-popup {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.35);
	z-index: 9999;
	opacity: 1;
	visibility: visible;
	transition: opacity 0.6s ease, visibility 0.6s ease;
}

.login-popup.fade-out {
	opacity: 0;
	visibility: hidden;
}

.login-popup-content {
	background: #ffffff;
	border: 2px solid #ff5f00;
	border-radius: 14px;
	padding: 0 22px;
	min-height: 96px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: auto;
	max-width: calc(100% - 40px);
	text-align: center;
	box-sizing: border-box;
	box-shadow:
		0 0 0 3px rgba(255, 95, 0, 0.10),
		0 10px 25px rgba(0, 0, 0, 0.15);
}

.login-popup-content p {
	margin: 0;
	padding: 0;
	color: #000000;
	font-size: 1.5rem;
	line-height: 1.45;
	text-align: center;
	display: block;
}

.login-popup-slide-in {
	animation: loginPopupSlideIn 0.45s ease forwards;
}

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

.login-popup-success .login-popup-content {
	border-color: #2e9e44;
	box-shadow:
		0 0 0 3px rgba(46, 158, 68, 0.12),
		0 10px 25px rgba(0, 0, 0, 0.15);
}

.login-shake {
	animation: loginShake 0.5s ease;
}

@keyframes loginShake {
	0%, 100% {
		transform: translateX(0);
	}
	20% {
		transform: translateX(-8px);
	}
	40% {
		transform: translateX(8px);
	}
	60% {
		transform: translateX(-6px);
	}
	80% {
		transform: translateX(6px);
	}
}

/* =========================================================
   CLIENT LOGIN INPUT WIDTH
   ========================================================= */

.client-code-input {
	width: min(320px, 100%) !important;
	max-width: 100%;
	height: 58px;
	padding: 14px 20px;
	border: 1px solid #e2d7ca !important;
	border-radius: 16px;
	background: linear-gradient(180deg, #ffffff 0%, #fbf8f4 100%);
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,.9),
		0 8px 20px rgba(0,0,0,.04);
	text-align: center;
	text-transform: lowercase;
	letter-spacing: 0.38em;
	font-size: 1.9rem;
	line-height: 1;
	margin-left: auto;
	margin-right: auto;
	display: block;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.client-code-input:focus {
	outline: none;
	border-color: #d97706 !important;
	box-shadow:
		0 0 0 4px rgba(217,119,6,.10),
		0 10px 24px rgba(0,0,0,.06);
	transform: translateY(-1px);
}

/* =========================================================
   ADMIN TOPBAR TWO-ROW BUTTON LAYOUT
   ========================================================= */

.cm-topbar-actions-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	margin-top: 10px;
}

.cm-topbar-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
	width: 100%;
}

.cm-topbar-actions .cm-btn {
	min-width: 170px;
	text-align: center;
	justify-content: center;
}

@media (max-width: 768px) {
	.cm-topbar-actions-wrap {
		gap: 8px;
	}

	.cm-topbar-actions {
		gap: 8px;
	}

	.cm-topbar-actions .cm-btn {
		min-width: 150px;
	}
}

@media (max-width: 480px) {
	.cm-topbar-actions {
		flex-direction: column;
	}

	.cm-topbar-actions .cm-btn {
		width: min(100%, 320px);
		min-width: 0;
	}
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
	.premium-contact-layout {
		grid-template-columns: 1fr;
		gap: 34px;
		padding: 56px 0 76px;
	}

	.premium-contact-info {
		padding-top: 0;
	}

	.contact-intro {
		max-width: 100%;
	}

	.premium-form-card {
		padding: 32px;
	}
}

@media (max-width: 768px) {
	#header .wrapper {
		min-height: 90px;
		padding: 0.4em 1.2em;
		gap: 1.2em;
	}

	.site-logo {
		height: 76px;
	}

	#header nav ul {
		gap: 1.4em;
	}

	#content {
		padding-top: 155px;
	}

	.portfolio-page #content {
		padding-top: 155px;
	}

	.portfolio-heading {
		margin-bottom: 26px;
	}

	.portfolio-heading p {
		font-size: 1.58rem;
	}

	#gallery-filter {
		margin-bottom: 26px;
		display: flex;
		justify-content: center;
	}

	#gallery-filter ul {
		gap: 10px 12px;
		justify-content: center;
		width: 100%;
	}

	#gallery-filter ul li a {
		min-height: 40px;
		padding: 0 15px;
		font-size: 0.96em;
		letter-spacing: 0.06em;
	}

	.masonry-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}

	.gallery-icon,
	.gallery-icon img {
		border-radius: 18px;
	}

	.featured-image-header {
		height: 250px;
	}

	.premium-contact-layout {
		padding: 48px 0 68px;
	}

	.premium-form-card {
		padding: 28px 22px;
		border-radius: 22px;
	}

	.contact-info-card,
	.contact-side-note {
		padding: 22px 20px;
		border-radius: 18px;
	}

	.premium-form-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.premium-field-full {
		grid-column: auto;
	}

	.premium-form-footer {
		text-align: center;
	}

	.premium-submit-btn {
		width: 100%;
		max-width: 320px;
	}

	.contact-mini-map iframe {
		height: 170px;
	}

	.contact-popup-box {
		padding: 16px 20px;
	}

	.contact-popup-box p {
		font-size: 1.4rem;
	}

	.team-card {
		max-width: 240px;
	}

	.team-label {
		font-size: 1.1em;
	}

	#back-to-top-btn {
		width: 42px;
		height: 42px;
		right: 18px;
		bottom: 18px;
		font-size: 1.6rem;
	}

	.login-popup-content {
		min-height: 90px;
		padding: 0 20px;
	}

	.login-popup-content p {
		font-size: 1.4rem;
	}

	.client-code-input {
		width: min(320px, 100%) !important;
	}
}

@media (max-width: 480px) {
	#header .wrapper {
		flex-direction: column;
		justify-content: center;
		padding: 0.8em 1em;
	}

	.site-title {
		padding-left: 0;
	}

	#mainmenu {
		margin-left: 0;
		padding-right: 0;
	}

	#header nav ul {
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.9em 1.2em;
	}

	#content {
		padding-top: 190px;
	}

	.portfolio-page #content {
		padding-top: 190px;
	}

	#content h2 {
		font-size: 1.8em;
		margin-bottom: 22px;
	}

	.portfolio-heading p {
		font-size: 1.5rem;
	}

	#gallery-filter {
		display: flex;
		justify-content: center;
	}

	#gallery-filter ul {
		justify-content: center;
		gap: 10px 10px;
		width: 100%;
	}

	#gallery-filter ul li a {
		font-size: 0.9em;
		padding: 0 14px;
		min-height: 38px;
	}

	.masonry-gallery {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.gallery-icon,
	.gallery-icon img {
		border-radius: 16px;
	}

	.featured-image-header {
		height: 220px;
	}

	.premium-contact-info h1 {
		font-size: 3.2rem;
	}

	.form-heading h2 {
		font-size: 2.5rem;
	}

	.contact-intro,
	.contact-info-row p,
	.contact-side-note p,
	.form-heading p,
	.premium-field input,
	.premium-field select,
	.premium-field textarea {
		font-size: 1.5rem;
	}

	.contact-mini-map iframe {
		height: 160px;
	}

	.contact-popup-box {
		padding: 14px 18px;
		max-width: calc(100% - 24px);
	}

	.contact-popup-box p {
		font-size: 1.3rem;
		line-height: 1.45;
	}

	.team-card {
		max-width: 215px;
	}

	.team-label {
		font-size: 1em;
	}

	#footer .footer-inner {
		flex-direction: column;
		text-align: center;
		padding-bottom: 0;
	}

	.footer-admin-link {
		position: static;
		display: block;
		margin-bottom: 4px;
		text-align: center;
	}

	.social-icons {
		gap: 12px;
	}

	.social-icons li a {
		width: 40px;
		height: 40px;
		font-size: 17px;
	}

	#back-to-top-btn {
		width: 40px;
		height: 40px;
		right: 16px;
		bottom: 16px;
		font-size: 1.5rem;
	}

	.login-popup-content {
		min-height: 86px;
		padding: 0 18px;
		max-width: calc(100% - 28px);
	}

	.login-popup-content p {
		font-size: 1.3rem;
		line-height: 1.4;
	}

	.client-code-input {
		width: min(300px, 100%) !important;
		font-size: 1.7rem;
		letter-spacing: 0.28em;
		padding: 14px 16px;
	}
}

/* =========================================================
   404 PAGE
   ========================================================= */

body.error404-page {
	background: linear-gradient(to bottom, #f7f6f5 0%, #f2efeb 100%);
	min-height: 100vh;
}

body.error404-page #content {
	padding-top: 80px;
	padding-bottom: 80px;
	min-height: calc(100vh - 90px);
	display: flex;
	align-items: center;
}

body.error404-page #content .wrapper {
	width: min(900px, 92%);
	margin: 0 auto;
	padding-top: 0;
}

.error404-wrap {
	text-align: center;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 28px;
	padding: 56px 36px;
	box-shadow:
		0 18px 40px rgba(0, 0, 0, 0.08),
		0 0 30px rgba(0, 0, 0, 0.03);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.error404-code {
	margin: 0 0 20px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: clamp(4.8rem, 8vw, 8.2rem);
	font-weight: 600;
	letter-spacing: 0.12em;
	line-height: 1;
	color: #ff5f00;
	text-transform: uppercase;
}

.error404-logo {
	margin: 0 auto 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.error404-logo img {
	display: block;
	width: min(100%, 420px);
	height: auto;
	max-width: 100%;
}

.error404-title {
	margin: 0 0 20px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: clamp(2.6rem, 4vw, 4.2rem);
	font-weight: 600;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-transform: uppercase;
	color: #1f1f1f;
}

.error404-wrap hr {
	width: 90px;
	height: 2px;
	border: none;
	background: linear-gradient(90deg, #ff5f00, #e65400);
	margin: 24px auto 28px;
	border-radius: 999px;
}

.error404-text {
	margin: 0 0 16px;
	font-size: 1.75rem;
	line-height: 1.8;
	color: #5f574f;
	text-align: center;
}

.error404-list {
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
	text-align: center;
}

.error404-list li {
	margin: 0 0 8px;
	font-size: 1.7rem;
	line-height: 1.8;
	color: #6a6158;
}

.error404-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 10px;
}

.error404-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 190px;
	padding: 15px 28px;
	border-radius: 999px;
	background: linear-gradient(135deg, #ff5f00, #e65400);
	color: #ffffff !important;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 1.28rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	box-shadow: 0 12px 28px rgba(255, 95, 0, 0.20);
	transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.error404-btn:hover {
	color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(255, 95, 0, 0.24);
	opacity: 0.98;
}

.error404-btn:active {
	transform: translateY(0);
}

@media (max-width: 768px) {
	body.error404-page #content {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.error404-wrap {
		padding: 42px 24px;
		border-radius: 22px;
	}

	.error404-logo img {
		width: min(100%, 320px);
	}

	.error404-text,
	.error404-list li {
		font-size: 1.55rem;
	}

	.error404-btn {
		width: 100%;
		max-width: 320px;
	}
}

@media (max-width: 480px) {
	body.error404-page #content {
		padding-top: 36px;
		padding-bottom: 36px;
	}

	.error404-wrap {
		padding: 34px 18px;
		border-radius: 18px;
	}

	.error404-code {
		font-size: clamp(4rem, 15vw, 6rem);
	}

	.error404-title {
		font-size: clamp(2.1rem, 7vw, 3rem);
	}

	.error404-logo img {
		width: min(100%, 260px);
	}

	.error404-text,
	.error404-list li {
		font-size: 1.45rem;
	}

	.error404-buttons {
		gap: 12px;
	}

	.error404-btn {
		min-width: 100%;
		padding: 14px 20px;
		font-size: 1.18rem;
	}
}

/* =========================================================
   CLIENT LOGOUT BUTTON
   ========================================================= */

.client-logout-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 190px;
	padding: 15px 28px;
	border: none;
	border-radius: 999px;
	background: linear-gradient(135deg, #ff5f00, #e65400);
	color: #ffffff !important;
	text-decoration: none;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 1.28rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 0 12px 28px rgba(255, 95, 0, 0.20);
	transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.client-logout-btn:hover {
	color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(255, 95, 0, 0.24);
	opacity: 0.98;
}

.client-logout-btn:active {
	transform: translateY(0);
}

@media (max-width: 768px) {
	.client-logout-btn {
		width: 100%;
		max-width: 320px;
	}
}

@media (max-width: 480px) {
	.client-logout-btn {
		min-width: 100%;
		padding: 14px 20px;
		font-size: 1.18rem;
	}
}

/* =========================================================
   CLIENT PAGE DOWNLOAD + GALLERY
   ========================================================= */

.client-page-content h1,
.client-page-content p,
.client-page-content h2,
.client-page-content h3,
.client-page-content .client-gallery-title,
.client-page-content .client-gallery-kicker,
.client-page-content .client-gallery-empty {
	text-align: center;
}

.client-download-panel {
	margin-top: 42px;
	margin-bottom: 56px;
	display: flex;
	justify-content: center;
}

.client-download-card {
	width: min(760px, 100%);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(248, 245, 240, 0.94));
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 28px;
	padding: 34px 28px;
	box-shadow:
		0 24px 54px rgba(0, 0, 0, 0.08),
		0 0 36px rgba(0, 0, 0, 0.03);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-sizing: border-box;
}

.client-gallery-kicker {
	display: inline-block;
	margin-bottom: 14px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 1.15rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #9a7a59;
}

.client-download-card h2,
.client-gallery-title {
	margin: 0 0 14px;
	font-family: 'Playfair Display', serif;
	font-size: clamp(2.4rem, 3vw, 3.4rem);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.01em;
	color: #1f1b18;
	text-transform: none;
}

.client-download-card p {
	margin: 0 auto 24px;
	max-width: 620px;
	font-size: 1.65rem;
	line-height: 1.8;
	color: #62584f;
}

.client-download-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 230px;
	padding: 16px 30px;
	border-radius: 999px;
	background: linear-gradient(135deg, #ff5f00, #e65400);
	color: #ffffff !important;
	text-decoration: none;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 1.22rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	box-shadow: 0 12px 28px rgba(255, 95, 0, 0.20);
	transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.client-download-btn:hover {
	color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(255, 95, 0, 0.24);
	opacity: 0.98;
}

.client-download-btn:active {
	transform: translateY(0);
}

.client-gallery-section {
	margin-top: 10px;
}

.client-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-top: 30px;
}

.client-gallery-item {
	background: rgba(255, 255, 255, 0.92);
	border-radius: 22px;
	overflow: hidden;
	box-shadow:
		0 14px 34px rgba(0, 0, 0, 0.08),
		0 0 24px rgba(80, 80, 80, 0.05);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.client-gallery-item:hover {
	transform: translateY(-6px);
	box-shadow:
		0 20px 42px rgba(0, 0, 0, 0.12),
		0 0 30px rgba(90, 90, 90, 0.07);
}

.client-gallery-item a {
	display: block;
	text-decoration: none;
}

.client-gallery-item img {
	display: block;
	width: 100%;
	height: 320px;
	object-fit: cover;
	transition: transform 0.55s ease, filter 0.35s ease;
}

.client-gallery-item:hover img {
	transform: scale(1.035);
	filter: brightness(1.02);
}

.client-gallery-empty {
	margin-top: 24px;
	font-size: 1.6rem;
	line-height: 1.8;
	color: #6a6158;
}

@media (max-width: 1024px) {
	.client-gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.client-download-card {
		padding: 28px 22px;
		border-radius: 22px;
	}

	.client-download-btn {
		width: 100%;
		max-width: 340px;
	}

	.client-gallery-grid {
		gap: 18px;
	}

	.client-gallery-item img {
		height: 260px;
	}
}

@media (max-width: 480px) {
	.client-download-card {
		padding: 24px 18px;
		border-radius: 18px;
	}

	.client-download-card p {
		font-size: 1.5rem;
	}

	.client-gallery-grid {
		grid-template-columns: 1fr;
	}

	.client-gallery-item img {
		height: 240px;
	}
}

/* =========================================================
   CLIENT ACTION BUTTON ROW
   ========================================================= */

.client-action-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 6px;
}

.client-logout-btn-inline {
	min-width: 190px;
}

.client-top-logout-wrap {
	display: none !important;
}

.client-bottom-logout-wrap {
	margin-top: 48px;
	display: flex;
	justify-content: center;
}

@media (max-width: 768px) {
	.client-action-row {
		flex-direction: column;
		gap: 14px;
	}

	.client-download-btn,
	.client-logout-btn-inline {
		width: 100%;
		max-width: 340px;
	}
}

@media (max-width: 480px) {
	.client-download-btn,
	.client-logout-btn-inline {
		max-width: 100%;
	}
}

/* =========================================================
   CLIENT PAGE HEADER SPACING FIX
   ========================================================= */

.client-gallery-page main {
	padding-top: 180px;
}

@media (max-width: 768px) {
	.client-gallery-page main {
		padding-top: 260px;
	}
}

@media (max-width: 480px) {
	.client-gallery-page main {
		padding-top: 300px;
	}
}

/* =========================================================
   CLIENT BUTTON WIDTH FIX (MOBILE)
   ========================================================= */

.client-action-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

.client-download-btn,
.client-logout-btn-inline {
	min-width: 0;
	width: auto;
	padding: 14px 22px;
	font-size: 1.1rem;
}

@media (max-width: 768px) {
	.client-action-row {
		flex-direction: column;
		gap: 12px;
	}

	.client-download-btn,
	.client-logout-btn-inline {
		width: fit-content;
		max-width: 90%;
	}
}

@media (max-width: 480px) {
	.client-download-btn,
	.client-logout-btn-inline {
		width: fit-content;
		max-width: 95%;
		padding: 13px 20px;
		font-size: 1.05rem;
	}
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

body.about-page,
body.about-page p,
body.about-page li,
body.about-page input,
body.about-page textarea,
body.about-page select {
	font-family: 'Manrope', sans-serif;
}

body.about-page {
	background: #f5f4f2;
}

body.about-page #content,
body.about-page .content-wrapper,
body.about-page .about-section,
body.about-page .about-section h4,
body.about-page .about-section h5,
body.about-page .about-section p,
body.about-page .intro-title,
body.about-page .intro-title p {
	text-align: center;
}

body.about-page .intro-title {
	margin: 0 auto 34px;
	max-width: 900px;
}

body.about-page .intro-title h1 {
	margin: 0 0 14px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: clamp(3.2rem, 5vw, 5.4rem);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #1f1f1f;
	text-align: center;
}

body.about-page .intro-title p {
	margin: 0 auto;
	max-width: 720px;
	font-size: 1.75rem;
	line-height: 1.8;
	color: #62584f;
	text-align: center;
}

body.about-page .about-section {
	max-width: 980px;
	margin: 0 auto;
}

body.about-page .about-section h4 {
	margin: 0 0 18px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #1f1f1f;
	text-align: center;
}

body.about-page .about-section h5 {
	margin: 28px 0 10px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 1.7rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #2b2723;
	text-align: center;
}

body.about-page .about-section p {
	font-size: 1.65rem;
	line-height: 1.9;
	color: #4f4943;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

body.about-page .about-section a {
	color: #b54a00;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 1px solid rgba(181, 74, 0, 0.25);
}

body.about-page .about-section a:hover {
	color: #ff5f00;
	border-bottom-color: #ff5f00;
}

body.about-page .divider {
	width: min(90px, 100%);
	height: 2px;
	border: none;
	margin: 34px auto;
	background: linear-gradient(90deg, #ff5f00, #e65400);
	border-radius: 999px;
}

@media (max-width: 768px) {
	body.about-page #content {
		padding-top: 165px;
	}

	body.about-page .content-wrapper {
		text-align: center;
	}

	body.about-page .about-section,
	body.about-page .about-section p,
	body.about-page .about-section h4,
	body.about-page .about-section h5 {
		text-align: center;
	}

	body.about-page .about-section p {
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	body.about-page .team-gallery {
		margin-top: 2.4em;
		margin-bottom: 1.4em;
	}

	body.about-page .team-card {
		max-width: 220px;
	}
}

@media (max-width: 480px) {
	body.about-page #content {
		padding-top: 205px;
	}

	body.about-page .intro-title h1 {
		font-size: clamp(2.8rem, 9vw, 4rem);
		line-height: 1.08;
	}

	body.about-page .intro-title p {
		font-size: 1.5rem;
		line-height: 1.75;
	}

	body.about-page .about-section h4 {
		font-size: 1.7rem;
		letter-spacing: 0.1em;
	}

	body.about-page .about-section h5 {
		font-size: 1.45rem;
	}

	body.about-page .about-section p {
		font-size: 1.45rem;
		line-height: 1.8;
	}

	body.about-page .team-card {
		max-width: 200px;
	}
}

/* =========================================================
   CONTACT PAGE TYPOGRAPHY + MOBILE ALIGNMENT
   ========================================================= */

body.contact-page .premium-contact-info,
body.contact-page .premium-contact-info p,
body.contact-page .premium-contact-info li,
body.contact-page .contact-info-row p,
body.contact-page .contact-side-note p {
	font-family: 'Manrope', sans-serif;
}

body.contact-page .premium-contact-info h1 {
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

body.contact-page .contact-intro,
body.contact-page .contact-info-row p,
body.contact-page .contact-side-note p {
	font-size: 1.65rem;
	line-height: 1.85;
	color: #4f4943;
}

@media (max-width: 768px) {
	body.contact-page #content {
		padding-top: 165px;
	}

	body.contact-page .premium-contact-layout {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 44px 0 64px;
	}

	body.contact-page .premium-contact-info,
	body.contact-page .premium-contact-info h1,
	body.contact-page .contact-kicker,
	body.contact-page .contact-intro,
	body.contact-page .contact-info-card,
	body.contact-page .contact-info-row,
	body.contact-page .contact-info-row p,
	body.contact-page .contact-label,
	body.contact-page .contact-side-note,
	body.contact-page .contact-side-note h3,
	body.contact-page .contact-side-note p,
	body.contact-page .premium-form-card,
	body.contact-page .form-heading,
	body.contact-page .form-heading h2,
	body.contact-page .form-heading p,
	body.contact-page .premium-field label,
	body.contact-page .premium-form-footer,
	body.contact-page .form-note {
		text-align: center;
	}

	body.contact-page .contact-kicker,
	body.contact-page .contact-intro,
	body.contact-page .contact-info-card,
	body.contact-page .contact-side-note,
	body.contact-page .premium-form-card {
		margin-left: auto;
		margin-right: auto;
	}

	body.contact-page .contact-intro {
		max-width: 100%;
	}

	body.contact-page .contact-info-row a {
		word-break: break-word;
	}

	body.contact-page .premium-field {
		align-items: center;
	}

	body.contact-page .premium-field label {
		width: 100%;
	}

	body.contact-page .premium-field input,
	body.contact-page .premium-field select,
	body.contact-page .premium-field textarea {
		text-align: center;
	}

	body.contact-page .premium-submit-btn {
		width: 100%;
		max-width: 320px;
	}
}

@media (max-width: 480px) {
	body.contact-page #content {
		padding-top: 205px;
	}

	body.contact-page .premium-contact-info h1 {
		font-size: clamp(2.8rem, 9vw, 4rem);
		line-height: 1.08;
	}

	body.contact-page .contact-intro,
	body.contact-page .contact-info-row p,
	body.contact-page .contact-side-note p,
	body.contact-page .form-heading p {
		font-size: 1.5rem;
		line-height: 1.75;
	}

	body.contact-page .premium-form-card {
		padding: 24px 18px;
	}

	body.contact-page .contact-info-card,
	body.contact-page .contact-side-note {
		padding: 20px 18px;
	}
}

/* Premium Portfolio Popup Enhancements */
.mfp-bg{background:rgba(0,0,0,.9)!important;}
.mfp-image-holder .mfp-content img{
border-radius:12px;
box-shadow:0 10px 40px rgba(0,0,0,.35);
}
.gallery .gallery-item img{
transition:transform .35s ease, opacity .35s ease;
}
.gallery .gallery-item:hover img{
transform:scale(1.04);
opacity:.96;
}
