/* DESIGN PAGE STYLES */
:root { --logo-size: 67px; }
.design-hero {
	position: relative;
	background: #111;
	color: #FDFBF0;
	overflow: hidden;
}

.design-hero-media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.design-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(100%) contrast(1.1) brightness(0.8);
}

.design-hero-overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top left, rgba(253, 251, 240, 0.3), transparent 55%),
		linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75));
}

.design-hero-content {
	position: relative;
	min-height: 70vh;
	display: grid;
	align-content: center;
	gap: 18px;
	padding: 96px 20px 72px;
	text-align: left;
}

.design-hero-content h1 {
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.2;
	margin: 0;
}

.design-hero-content .hero-intro {
	max-width: 640px;
	margin: 0;
	color: #FDFBF0;
}

.design-hero .btn-row {
	margin-top: 10px;
}

.design-hero .btn {
	border-radius: 24px;
	padding-inline: 22px;
}

/* DESIGN OVERVIEW */

.design-overview {
	background: #FDFBF0;
}

.design-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
	gap: 40px;
	align-items: flex-start;
}

.design-copy h2 {
	margin-top: 0;
	margin-bottom: 12px;
	color: #465940;
}

.design-copy p {
	margin-top: 0;
	margin-bottom: 14px;
}

.design-list {
	margin: 0;
	padding-left: 18px;
	color: #5e625e;
}

.design-list li + li {
	margin-top: 6px;
}

.design-highlight {
	display: flex;
	align-items: stretch;
}

.highlight-card {
	background: #465940;
	color: #FDFBF0;
	border-radius: 14px;
	padding: 22px 20px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.highlight-card h3 {
	margin-top: 4px;
	margin-bottom: 10px;
}

.highlight-card p {
	margin-top: 0;
	margin-bottom: 8px;
}

.highlight-label {
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	opacity: 0.85;
}

.highlight-meta {
	font-size: 13px;
	opacity: 0.9;
}

/* DESIGN PROJECT CARDS */

.design-projects {
	background: #FDFBF0;
}

.design-project-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 22px;
}

.design-card {
	background: #ffffff;
	border-radius: 14px;
	border: 1px solid rgba(70, 89, 64, 0.12);
	padding: 22px 20px;
	box-shadow: 0 16px 40px rgba(70, 89, 64, 0.08);
}

.design-card h3 {
	margin: 0 0 8px 0;
	font-size: 18px;
}

.design-card .meta {
	margin: 0 0 10px 0;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #5e625e;
}

.design-card p {
	margin: 0;
}

/* PROCESS SECTION */

.design-process {
	background: #ffffff;
}

.process-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
}

.process-steps li {
	border-radius: 14px;
	border: 1px solid rgba(70, 89, 64, 0.16);
	padding: 18px 18px 20px;
	background: #FDFBF0;
}

.process-steps h3 {
	margin: 0 0 8px 0;
	font-size: 16px;
	color: #465940;
}

.process-steps p {
	margin: 0;
	color: #5e625e;
}

/* CTA REUSE (relies on existing .cta-banner styles from about page) */

.cta-banner {
	background: #465940;
	color: #FDFBF0;
}

.cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.cta-inner h2 {
	margin-top: 4px;
	margin-bottom: 10px;
}
.cta-banner .section-intro {
	color: #FDFBF0;
	opacity: 0.95;
}

.cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.cta-banner .btn {
	border-radius: 24px;
	padding-inline: 22px;
}

.cta-banner .btn-light {
	background: #FDFBF0;
	color: #465940;
	box-shadow: none;
}

/* FOOTER (shared) */

.site-footer {
	background: var(--brand);
	color: var(--white);
	padding: 36px 0 16px 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1fr;
	gap: 28px;
	align-items: start;
}

.footer-brand h4 {
	margin: 6px 0 4px 0;
	font-family: "Sansation";
}

.footer-brand .tagline {
	color: #FDFBF0;
	margin: 0;
}

.footer-logo {
	width: 250px;
	height: 250px;
	background: url('assets/images/logo-footer.png') center/contain no-repeat;
	flex-shrink: 0;
}

.footer-col h5 {
	margin: 0 0 8px 0;
	font-weight: 600;
	letter-spacing: 0.3px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer-col p {
	margin: 0 0 10px 0;
	color: #FDFBF0;
}

.footer-links {
	list-style: none;
	margin: 0 0 6px 0;
	padding: 0;
}

.footer-links li {
	margin: 0 0 6px 0;
}

.footer-links a {
	color: #FDFBF0;
	text-decoration: none;
	font-size: 14px;
}

.footer-links a:hover {
	text-decoration: underline;
}

.footer-divider {
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	margin: 22px 0 10px;
}

.footer-bottom {
	color: #FDFBF0;
}

.copyright {
	margin: 0;
	font-size: 13px;
	text-align: center;
}

.copyright .legal-link {
	color: #FDFBF0;
	text-decoration: none;
}

.copyright .legal-link:hover {
	text-decoration: underline;
}

/* TERMS/PRIVACY MODAL (shared) */

.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	inset: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(5px);
}

.modal-content {
	position: relative;
	background-color: #FDFBF0;
	margin: 2% auto;
	padding: 0;
	width: 90%;
	max-width: 1200px;
	height: 90vh;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	display: flex;
	overflow: hidden;
}

.modal-sidebar {
	width: 25%;
	background-color: #465940;
	color: #FDFBF0;
	padding: 30px 20px;
	overflow-y: auto;
}

.modal-main {
	width: 75%;
	background-color: #FDFBF0;
	padding: 40px;
	overflow-y: auto;
	position: relative;
}

.back-link {
	color: #FDFBF0;
	text-decoration: none;
	font-size: 16px;
	margin-bottom: 30px;
	display: block;
	transition: color 0.3s ease;
}

.back-link:hover {
	text-decoration: underline;
}

.modal-nav ol {
	list-style: none;
	padding: 0;
	margin: 0;
}

.modal-nav li {
	margin-bottom: 15px;
}

.modal-nav a {
	color: #FDFBF0;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.4;
	transition: color 0.3s ease;
}

.modal-nav a:hover {
	text-decoration: underline;
}

.modal-main h1 {
	font-size: 32px;
	font-weight: bold;
	color: #465940;
	margin: 0 0 30px 0;
	text-align: center;
	font-family: "Sansation";
}

.modal-main h2 {
	font-size: 20px;
	font-weight: bold;
	color: #465940;
	margin: 30px 0 15px 0;
	font-family: "Sansation";
}

.modal-main p {
	font-size: 16px;
	line-height: 1.6;
	color: #465940;
	margin-bottom: 15px;
}

.modal-main ul {
	margin: 15px 0;
	padding-left: 20px;
}

.modal-main li {
	font-size: 16px;
	line-height: 1.6;
	color: #465940;
	margin-bottom: 8px;
}

.modal-main a {
	color: #465940;
	text-decoration: underline;
}

.modal-main a:hover {
	color: #465940;
}

.modal-intro {
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #465940;
}

/* COMPLETED GALLERY */

.completed-gallery {
	background: #FDFBF0;
}

.completed-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 18px;
}

.completed-card {
	position: relative;
	aspect-ratio: 4 / 5;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.completed-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.completed-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.completed-card:hover img {
	transform: scale(1.04);
}

.completed-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 16px;
	background: linear-gradient(to top, rgba(70, 89, 64, 0.9), rgba(70, 89, 64, 0.35));
	color: #FDFBF0;
	transition: background 0.3s ease;
}

.completed-overlay span {
	font-size: 18px;
	font-weight: 700;
}

.completed-overlay p {
	margin: 6px 0 0;
	font-size: 14px;
	line-height: 1.4;
	opacity: 0.92;
}

.completed-card:hover .completed-overlay {
	background: linear-gradient(to top, rgba(70, 89, 64, 0.94), rgba(70, 89, 64, 0.55));
}

.completed-modal {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.7);
	z-index: 1200;
	padding: 20px;
}

.completed-modal.open {
	display: flex;
}

.completed-modal-content {
	background: #465940;
	color: #FDFBF0;
	border-radius: 12px;
	width: min(1200px, 96vw);
	max-height: 90vh;
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 20px;
	padding: 24px;
	position: relative;
	overflow: auto;
}

.completed-modal-left {
	overflow-y: auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
	padding-right: 6px;
}

.completed-modal-left img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 10px;
}

/* Hero-first view for testimonial modals */
.completed-modal-left.hero-view {
	display: block;
}

.completed-modal-left.hero-view img {
	height: 100%;
	max-height: calc(90vh - 80px);
	object-fit: contain;
	border-radius: 10px;
}

.completed-modal-right {
	overflow-y: auto;
	padding-right: 6px;
}

.completed-modal-right h2 {
	margin-top: 0;
	margin-bottom: 12px;
}

.completed-modal-right p {
	margin: 0;
	line-height: 1.6;
	font-size: 15px;
}

.completed-modal-actions {
	margin-top: 16px;
}

.completed-modal-gallery-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	border-radius: 999px;
	border: none;
	background: #FDFBF0;
	color: #465940;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.1s ease;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.completed-modal-gallery-btn:hover {
	background: #e6e0c8;
	transform: translateY(-1px);
}

.completed-modal-gallery-btn:active {
	transform: translateY(0);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.24);
}

.completed-close-btn {
	position: absolute;
	top: 10px;
	right: 12px;
	background: transparent;
	border: none;
	color: #FDFBF0;
	font-size: 28px;
	cursor: pointer;
	padding: 4px 8px;
	line-height: 1;
	transition: opacity 0.2s ease;
}

.completed-close-btn:hover {
	opacity: 0.8;
}

/* RESPONSIVE */

@media (max-width: 900px) {
	.design-grid {
		grid-template-columns: 1fr;
	}

	.cta-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-grid {
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	}

	.modal-content {
		width: 95%;
		height: 95vh;
		margin: 2.5% auto;
		flex-direction: column;
	}

	.modal-sidebar {
		width: 100%;
		max-height: 200px;
		padding: 20px;
	}

	.modal-main {
		width: 100%;
		padding: 20px;
	}
}

@media (max-width: 900px) {
	.footer-logo {
		width: 200px;
		height: 200px;
	}
}

@media (max-width: 600px) {
	.footer-logo {
		width: 150px;
		height: 150px;
	}
}
.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding-bottom: 40px;
}
.footer-address a {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-address a:hover {
  color: #C8A04A; /* or your brand accent */
}

.location-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  margin-top: 2px;
  flex-shrink: 0;
}
.site-header .nav ul li a {
  font-weight: 700;
  font-size: 17px;   /* 👈 CHANGE THIS */
}
.has-dropdown {
  position: relative;
}

.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  right: 0;     /* 👈 anchor to the right */
  left: auto;
  display: none;
  min-width: 250px;
  background:#FDFBF0;
  border-radius: 10px;
  padding: 8px 0;
  z-index: 999;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  display: block;
}
@media (max-width: 900px) {
	.completed-modal-content {
		grid-template-columns: 1fr;
	}

	.completed-modal-right {
		order: 1; /* TEXT FIRST (TOP) */
	}

	.completed-modal-left {
		order: 2; /* IMAGE SECOND (BOTTOM) */
	}
}