/* ============================================================
   ROYALSTONEDECOR — Luxury Dark Gold Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Lato:wght@300;400;700&display=swap');

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--black: #070707;
	--dark: #111111;
	--card: #1c1c1c;
	--card-hover: #242424;
	--gold: #c9a84c;
	--gold-light: #e8c96e;
	--gold-dim: rgba(201, 168, 76, 0.12);
	--gold-border: rgba(201, 168, 76, 0.25);
	--text: #f0e8d8;
	--text-muted: #8a7a60;
	--text-dim: #6a5c44;
	--border: rgba(201, 168, 76, 0.18);
	--font-head: 'Playfair Display', Georgia, serif;
	--font-body: 'Lato', sans-serif;
	--transition: all 0.28s ease;
	--glow: 0 0 24px rgba(201, 168, 76, 0.15);
	--shadow-card: 0 8px 40px rgba(0, 0, 0, 0.6);
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}
body {
	background: var(--black);
	color: var(--text);
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}
img {
	max-width: 100%;
	display: block;
}
a {
	color: var(--gold);
	text-decoration: none;
	transition: var(--transition);
}
a:hover {
	color: var(--gold-light);
}
ul {
	list-style: none;
}

/* ---- LAYOUT ---- */
.container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 28px;
}

/* ---- BUTTONS ---- */
.btn-gold {
	display: inline-block;
	background: var(--gold);
	color: var(--black);
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 14px 36px;
	border: none;
	cursor: pointer;
	transition: var(--transition);
}
.btn-gold:hover {
	background: var(--gold-light);
	color: var(--black);
	transform: translateY(-2px);
}
.btn-outline-gold {
	display: inline-block;
	background: transparent;
	color: var(--gold);
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 13px 34px;
	border: 1px solid var(--gold);
	cursor: pointer;
	transition: var(--transition);
}
.btn-outline-gold:hover {
	background: var(--gold);
	color: var(--black);
}

/* ---- HEADER ---- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 900;
	background: rgba(7, 7, 7, 0.92);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border);
}
.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}
.nav-logo {
	font-family: var(--font-head);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text);
	letter-spacing: 0.04em;
}
.nav-logo span {
	color: var(--gold);
}
.nav-links {
	display: flex;
	align-items: center;
	gap: 36px;
}
.nav-links a {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-muted);
	transition: var(--transition);
}
.nav-links a:hover {
	color: var(--gold);
}
.nav-cta {
	background: var(--gold);
	color: var(--black) !important;
	padding: 10px 24px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	transition: var(--transition);
}
.nav-cta:hover {
	background: var(--gold-light) !important;
	color: var(--black) !important;
}
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}
.hamburger span {
	width: 24px;
	height: 1px;
	background: var(--gold);
	display: block;
	transition: var(--transition);
}

/* ---- SECTION LABELS ---- */
.eyebrow {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 14px;
}
.section-header {
	margin-bottom: 56px;
}
.section-header.center {
	text-align: center;
}
.section-title {
	font-family: var(--font-head);
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 700;
	color: var(--text);
	line-height: 1.25;
	margin-bottom: 16px;
}
.section-sub {
	color: var(--text-muted);
	font-size: 0.95rem;
	line-height: 1.8;
	max-width: 580px;
}
.section-header.center .section-sub {
	margin: 0 auto;
}

/* ---- HERO ---- */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding-top: 72px;
}
.hero-bg {
	position: absolute;
	inset: 0;
	background: url('../images/hero-bg.jpg') center/cover no-repeat;
	filter: brightness(0.22);
}
.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(7, 7, 7, 0.7) 0%,
		rgba(7, 7, 7, 0.3) 100%
	);
}
.hero-content {
	position: relative;
	z-index: 2;
	max-width: 700px;
}
.hero-content h1 {
	font-family: var(--font-head);
	font-size: clamp(2.4rem, 5vw, 4.2rem);
	font-weight: 800;
	line-height: 1.12;
	color: var(--text);
	margin-bottom: 24px;
}
.hero-content h1 em {
	font-style: italic;
	color: var(--gold);
}
.hero-content p {
	font-size: 1.05rem;
	color: var(--text-muted);
	max-width: 520px;
	margin-bottom: 40px;
	line-height: 1.8;
}
.hero-divider {
	width: 60px;
	height: 1px;
	background: var(--gold);
	margin-bottom: 32px;
}
.hero-btns {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

/* ---- FEATURES / CARDS ---- */
.features {
	padding: 100px 0;
	background: var(--dark);
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--border);
	border: 1px solid var(--border);
}
.feature-card {
	background: var(--dark);
	padding: 48px 36px;
	transition: var(--transition);
}
.feature-card:hover {
	background: var(--card);
}
.feature-num {
	font-family: var(--font-head);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--gold-border);
	line-height: 1;
	margin-bottom: 20px;
}
.feature-card h3 {
	font-family: var(--font-head);
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 14px;
}
.feature-card p {
	color: var(--text-muted);
	font-size: 0.92rem;
	line-height: 1.8;
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
	padding: 100px 0;
	background: var(--black);
}
.hiw-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.hiw-img {
	position: relative;
}
.hiw-img img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	filter: brightness(0.85);
}
.hiw-img::before {
	content: '';
	position: absolute;
	inset: -12px;
	border: 1px solid var(--gold-border);
	z-index: -1;
}
.hiw-steps {
	display: flex;
	flex-direction: column;
	gap: 36px;
}
.hiw-step {
	display: flex;
	gap: 24px;
	align-items: flex-start;
}
.step-num {
	width: 44px;
	height: 44px;
	border: 1px solid var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-family: var(--font-head);
	font-size: 1rem;
	font-weight: 700;
	color: var(--gold);
}
.hiw-step h4 {
	font-family: var(--font-head);
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 8px;
}
.hiw-step p {
	color: var(--text-muted);
	font-size: 0.9rem;
	line-height: 1.75;
}

/* ---- STATS ---- */
.stats-strip {
	background: var(--gold);
	padding: 56px 0;
}
.stats-inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}
.stat-item {
	text-align: center;
}
.stat-item .num {
	font-family: var(--font-head);
	font-size: 2.6rem;
	font-weight: 700;
	color: var(--black);
	line-height: 1;
	margin-bottom: 8px;
}
.stat-item .label {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(7, 7, 7, 0.65);
}

/* ---- SERVICES SECTION ---- */
.services-section {
	padding: 100px 0;
	background: var(--dark);
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	background: var(--border);
	border: 1px solid var(--border);
}
.service-card {
	background: var(--dark);
	padding: 44px 40px;
	position: relative;
	overflow: hidden;
	transition: var(--transition);
}
.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--gold);
	transform: scaleX(0);
	transition: var(--transition);
	transform-origin: left;
}
.service-card:hover {
	background: var(--card);
}
.service-card:hover::before {
	transform: scaleX(1);
}
.service-card h3 {
	font-family: var(--font-head);
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 14px;
}
.service-card p {
	color: var(--text-muted);
	font-size: 0.92rem;
	line-height: 1.8;
}
.service-img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	margin-bottom: 28px;
	filter: brightness(0.7);
	transition: var(--transition);
}
.service-card:hover .service-img {
	filter: brightness(0.85);
}

/* ---- CTA BAND ---- */
.cta-band {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
}
.cta-band-bg {
	position: absolute;
	inset: 0;
	background: url('../images/about-img.jpg') center/cover no-repeat;
	filter: brightness(0.18);
}
.cta-band-inner {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}
.cta-band-inner h2 {
	font-family: var(--font-head);
	font-size: clamp(1.8rem, 3.5vw, 2.8rem);
	font-weight: 700;
	color: var(--text);
	margin-bottom: 20px;
}
.cta-band-inner p {
	color: var(--text-muted);
	font-size: 0.97rem;
	max-width: 520px;
	margin: 0 auto 36px;
	line-height: 1.8;
}

/* ---- CONTACT STRIP ---- */
.contact-strip {
	background: var(--card);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 64px 0;
}
.contact-strip-inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
.contact-strip-item {
	display: block;
}
.contact-strip-item .label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 10px;
}
.contact-strip-item p,
.contact-strip-item a {
	color: var(--text-muted);
	font-size: 0.93rem;
	line-height: 1.7;
}
.contact-strip-item a:hover {
	color: var(--gold);
}

/* ---- FOOTER ---- */
.site-footer {
	background: var(--black);
	border-top: 1px solid var(--border);
	padding: 72px 0 0;
}
.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 64px;
	border-bottom: 1px solid var(--border);
}
.footer-brand .nav-logo {
	margin-bottom: 16px;
	display: block;
}
.footer-brand p {
	color: var(--text-dim);
	font-size: 0.88rem;
	line-height: 1.8;
	max-width: 280px;
}
.footer-col h5 {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 20px;
}
.footer-col ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer-col ul a {
	color: var(--text-dim);
	font-size: 0.88rem;
}
.footer-col ul a:hover {
	color: var(--gold);
}
.footer-bottom {
	padding: 28px 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer-bottom p {
	color: var(--text-dim);
	font-size: 0.8rem;
}
.footer-keywords {
	color: var(--text-dim);
	font-size: 0.78rem;
	line-height: 1.7;
}

/* ---- COOKIE BANNER ---- */
#cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: var(--card);
	border-top: 1px solid var(--gold-border);
	transform: translateY(100%);
	transition: transform 0.4s ease;
}
#cookie-banner.visible {
	transform: translateY(0);
}
.cookie-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 28px;
	flex-wrap: wrap;
}
.cookie-inner p {
	color: var(--text-muted);
	font-size: 0.83rem;
	line-height: 1.6;
}
.cookie-inner a {
	color: var(--gold);
}
.cookie-btns {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}
.btn-cookie-accept {
	background: var(--gold);
	color: var(--black);
	border: none;
	padding: 9px 22px;
	font-family: var(--font-body);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: var(--transition);
}
.btn-cookie-accept:hover {
	background: var(--gold-light);
}
.btn-cookie-decline {
	background: transparent;
	color: var(--text-muted);
	border: 1px solid var(--border);
	padding: 8px 20px;
	font-family: var(--font-body);
	font-size: 0.8rem;
	cursor: pointer;
	transition: var(--transition);
}
.btn-cookie-decline:hover {
	color: var(--text);
	border-color: var(--text-muted);
}

/* ---- POLICY PAGES ---- */
.policy-hero {
	background: var(--dark);
	padding: 140px 0 72px;
	border-bottom: 1px solid var(--border);
}
.policy-hero h1 {
	font-family: var(--font-head);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	color: var(--text);
	margin-bottom: 12px;
}
.policy-hero p {
	color: var(--text-muted);
	font-size: 0.9rem;
}
.policy-body {
	background: var(--black);
	padding: 80px 0;
	max-width: 780px;
}
.policy-body h2 {
	font-family: var(--font-head);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--gold);
	margin: 44px 0 14px;
}
.policy-body h2:first-child {
	margin-top: 0;
}
.policy-body p {
	color: var(--text-muted);
	font-size: 0.94rem;
	line-height: 1.85;
	margin-bottom: 14px;
}
.policy-body ul {
	margin: 10px 0 16px 22px;
	color: var(--text-muted);
	font-size: 0.94rem;
	line-height: 1.85;
	list-style: disc;
}

/* ---- FAQ ---- */
.faq-section {
	padding: 100px 0;
	background: var(--black);
}
.faq-list {
	max-width: 820px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 2px;
	border: 1px solid var(--border);
}
.faq-item {
	background: var(--dark);
	border-bottom: 1px solid var(--border);
}
.faq-item:last-child {
	border-bottom: none;
}
.faq-item[open] {
	background: var(--card);
}
.faq-item summary {
	padding: 22px 28px;
	cursor: pointer;
	font-family: var(--font-head);
	font-size: 1rem;
	font-weight: 600;
	color: var(--text);
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	user-select: none;
}
.faq-item summary::-webkit-details-marker {
	display: none;
}
.faq-toggle {
	width: 28px;
	height: 28px;
	border: 1px solid var(--gold-border);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--gold);
	font-size: 1.1rem;
	line-height: 1;
	transition: var(--transition);
}
.faq-item[open] .faq-toggle {
	background: var(--gold);
	color: var(--black);
	transform: rotate(45deg);
}
.faq-answer {
	padding: 0 28px 24px;
	color: var(--text-muted);
	font-size: 0.92rem;
	line-height: 1.85;
	border-top: 1px solid var(--border);
	padding-top: 18px;
}
.faq-answer a {
	color: var(--gold);
}

/* ---- SERVICES DETAIL ---- */
.services-detail {
	padding: 100px 0;
	background: var(--black);
}
.service-detail-item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center;
	margin-bottom: 90px;
	padding-bottom: 90px;
	border-bottom: 1px solid var(--border);
}
.service-detail-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
.service-detail-img {
	width: 100%;
	height: 380px;
	object-fit: cover;
	filter: brightness(0.75);
}
.service-detail-text .eyebrow {
	margin-bottom: 12px;
	display: block;
}
.service-detail-text h3 {
	font-family: var(--font-head);
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 18px;
	line-height: 1.3;
}
.service-detail-text p {
	color: var(--text-muted);
	font-size: 0.94rem;
	line-height: 1.85;
	margin-bottom: 14px;
}
.service-detail-text a {
	color: var(--gold);
}

/* ---- ABOUT PAGE ---- */
.about-section {
	padding: 100px 0;
	background: var(--dark);
}
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.about-img-wrap {
	position: relative;
}
.about-img-wrap img {
	width: 100%;
	height: 520px;
	object-fit: cover;
	filter: brightness(0.75);
}
.about-img-wrap::before {
	content: '';
	position: absolute;
	bottom: -16px;
	right: -16px;
	width: 60%;
	height: 60%;
	border: 1px solid var(--gold-border);
	z-index: -1;
}
.values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--border);
	border: 1px solid var(--border);
	margin-top: 56px;
}
.value-card {
	background: var(--dark);
	padding: 36px 28px;
	transition: var(--transition);
}
.value-card:hover {
	background: var(--card-hover);
}
.value-num {
	font-family: var(--font-head);
	font-size: 1.8rem;
	color: var(--gold-border);
	font-weight: 700;
	margin-bottom: 12px;
}
.value-card h4 {
	font-family: var(--font-head);
	font-size: 1rem;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 10px;
}
.value-card p {
	color: var(--text-muted);
	font-size: 0.88rem;
	line-height: 1.7;
}

/* ---- CONTACT PAGE ---- */
.contact-page {
	padding: 100px 0;
	background: var(--black);
}
.contact-page-grid {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 72px;
}
.contact-form-luxury {
	background: var(--card);
	border: 1px solid var(--border);
	padding: 48px;
}
.form-group {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin-bottom: 20px;
}
.form-group label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--text-muted);
}
.form-group input,
.form-group textarea,
.form-group select {
	background: var(--dark);
	border: 1px solid var(--border);
	padding: 13px 16px;
	font-family: var(--font-body);
	font-size: 0.9rem;
	color: var(--text);
	outline: none;
	transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
	border-color: var(--gold);
}
.form-group textarea {
	resize: vertical;
	min-height: 130px;
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
	.features-grid {
		grid-template-columns: 1fr 1fr;
	}
	.hiw-grid {
		grid-template-columns: 1fr;
	}
	.hiw-img {
		display: none;
	}
	.stats-inner {
		grid-template-columns: repeat(2, 1fr);
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
	.services-grid {
		grid-template-columns: 1fr;
	}
	.service-detail-item {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.service-detail-img {
		height: 260px;
	}
	.contact-page-grid {
		grid-template-columns: 1fr;
	}
	.values-grid {
		grid-template-columns: 1fr 1fr;
	}
	.about-grid {
		grid-template-columns: 1fr;
	}
	.about-img-wrap {
		display: none;
	}
	.contact-strip-inner {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}
@media (max-width: 768px) {
	.nav-links {
		display: none;
	}
	.nav-links.open {
		display: flex;
		flex-direction: column;
		position: fixed;
		top: 72px;
		left: 0;
		right: 0;
		background: rgba(7, 7, 7, 0.97);
		padding: 24px;
		gap: 20px;
		border-top: 1px solid var(--border);
	}
	.hamburger {
		display: flex;
	}
	.features-grid {
		grid-template-columns: 1fr;
	}
	.values-grid {
		grid-template-columns: 1fr;
	}
	.stats-inner {
		grid-template-columns: 1fr 1fr;
	}
	.footer-grid {
		grid-template-columns: 1fr;
	}
	.hero-content h1 {
		font-size: 2rem;
	}
	.contact-form-luxury {
		padding: 28px;
	}
	.form-row {
		grid-template-columns: 1fr;
	}
}
