/* Global */
:root {
	--charcoal: rgba(43, 43, 43, 1);
	--soft-charcoal: rgba(74, 74, 74, 1);
	--white: rgba(255, 255, 255, 1);
	--soft-white: rgba(250, 254, 255, 1);
	--light-gray: rgba(242, 244, 247, 1);
	--gold: rgba(184, 134, 11, 1);
	--coral: rgba(255, 119, 106, 1);
	--mint: rgba(165, 242, 233, 1);
	--dark-mint: rgba(111, 214, 204, 1);
	--navy: rgba(11, 83, 148, 1);
	--bg-body: #fafeff;
	--bg-card: #2b2b2b;
	--primary: #ff776a;
	--primary-soft: #a5f2e9;
	--accent: #ff776a;
	--text-main: #2b2b2b;
	--text-muted: #6b7280;
	--border-soft: #2b2b2b;
	--radius-lg: 16px;
	--shadow-coral: 0 5px 45px rgba(255, 119, 106, 0.6);
	--shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.6);
	--max-width: 1120px;
}

* {
	box-sizing: border-box;
}

h1, h2, h3, .logo, .logo-text {
	font-family: 'Cinzel', serif;
}

body {
	margin: 0;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background: var(--soft-white);
	color: var(--charcoal);
}

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

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

/* Layout helpers */

.page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* Header */

header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--charcoal);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--coral);
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4.5rem;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.logo span {
	font-size: 1.5rem;
	background: linear-gradient(
		90deg,
		#b8860b 20%,
		#ffd37f 45%,
		#d4af37 60%,
		#b8860b 80%,
		#7a5a00 100%
	);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	font-size: 1rem;
}

.nav-links a {
	color: var(--soft-white);
	font-weight: 500;
}

.nav-links a:hover {
	color: var(--mint);
}

.nav-cta {
	padding: 0.6rem 1.1rem;
	border-radius: 999px;
	background: var(--coral);
	color: var(--soft-white);
	box-shadow: var(--shadow-coral);
	font-weight: 600;
	font-size: 1rem;
	border: none;
	cursor: pointer;
}

.nav-cta:hover {
	opacity: 0.95;
}

.nav-toggle {
	display: none;
	border: none;
	background: none;
	font-size: 1.2rem;
	cursor: pointer;
	color: var(--coral);
}

/* Mobile nav */

@media (max-width: 768px) {
	.nav-links {
		position: absolute;
		inset: 4.5rem 1.5rem auto 1.5rem;
		padding: 1rem;
		border-radius: 14px;
		background: var(--charcoal);
		box-shadow: var(--shadow-soft);
		flex-direction: column;
		align-items: flex-start;
		transform-origin: top;
		transform: scaleY(0.9);
		opacity: 0;
		pointer-events: none;
		transition: 0.18s ease-out;
	}

	.nav-links.open {
		transform: scaleY(1);
		opacity: 1;
		pointer-events: auto;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.nav-links .nav-cta {
		width: 100%;
		text-align: center;
		justify-content: center;
	}
}

/* Hero */

.hero {
	padding: 3rem 0 0;
}

.hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	gap: 2.5rem;
	align-items: center;
}

.hero-eyebrow {
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--coral);
	font-weight: 600;
	margin-bottom: 0.6rem;
}

.hero h1 {
	font-size: clamp(2.1rem, 3.1vw, 2.8rem);
	line-height: 1.1;
	margin: 0 0 0.9rem;
}

.hero p {
	margin: 0 0 1.4rem;
	color: var(--text-muted);
	font-size: 1rem;
}

.hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.8rem;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	background: var(--mint);
	color: var(--navy);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
}

.btn-primary {
	padding: 0.85rem 1.4rem;
	border-radius: 999px;
	border: none;
	background: var(--coral);
	color: var(--soft-white);
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	box-shadow: var(--shadow-coral);
}

.btn-primary:hover {
	opacity: 0.95;
}

.btn-ghost {
	padding: 0.85rem 1.3rem;
	border-radius: 999px;
	border: 1px solid var(--coral);
	background: var(--white);
	color: var(--coral);
	font-weight: 500;
	font-size: 1rem;
	cursor: pointer;
}

.btn-ghost:hover {
	background: var(--light-gray);
}

.hero-note {
	font-size: 0.8rem;
	color: var(--soft-charcoal);
	margin-top: 0.7rem;
}

.hero-visual {
	background: radial-gradient(circle at 0% 0%, var(--soft-white), var(--coral));
	border-radius: 24px;
	padding: 1.4rem;
	box-shadow: var(--shadow-soft);
	position: relative;
	overflow: hidden;
}

.hero-visual-main {
	background: var(--white);
	border-radius: 18px;
	padding: 1.3rem;
	border: 1px solid var(--light-gray);
}

.hero-visual-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	font-size: 1rem;
	color: var(--soft-charcoal);
}

.hero-visual-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.4rem;
}

.hero-room {
	height: 52px;
	border-radius: 12px;
	border: 1px dashed var(--soft-charcoal);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	color: var(--soft-charcoal);
}

.hero-room.active {
	background: var(--mint);
	border-style: solid;
	border-color: var(--dark-mint);
	color: var(--navy);
	font-weight: 600;
}

.hero-badge-floating {
	position: absolute;
	right: 1rem;
	bottom: 1.2rem;
	padding: 0.55rem 0.9rem;
	border-radius: 999px;
	background: var(--charcoal);
	color: var(--soft-white);
	font-size: 1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	box-shadow: var(--shadow-soft);
}

.hero-badge-floating span {
	font-weight: 600;
}

@media (max-width: 900px) {
	.hero-inner {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 600px) {
	.hero {
		padding-top: 2rem;
	}
}

/* Section base */

section {
	padding: 2.5rem 0;
}

.section-header {
	text-align: left;
	margin-bottom: 1.5rem;
}

.section-label {
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--coral);
	font-weight: 600;
	margin-bottom: 0.35rem;
}

.section-title {
	font-size: 1.5rem;
	margin: 0;
}

.section-subtitle {
	margin: 0.35rem 0 0;
	color: var(--soft-charcoal);
	font-size: 1rem;
}

/* Trust strip */

.trust-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	padding: 1rem 1.25rem;
	background: var(--white);
	border-radius: 999px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
	margin-top: 1rem;
	margin-bottom: 1.8rem;
	align-items: center;
	justify-content: center;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8rem;
	color: var(--soft-charcoal);
}

.trust-icon {
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: var(--mint);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	color: var(--navy);
}

/* Services */

.cards-grid {
	display: grid;
	gap: 1.3rem;
}

@media (min-width: 720px) {
	.cards-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.card {
	background: var(--charcoal);
	border-radius: var(--radius-lg);
	padding: 1.2rem 1.2rem 1.3rem;
	border: 1px solid var(--light-gray);
	box-shadow: 0 14px 32px rgba(15, 23, 42, 0.04);
}

.card-icon {
	width: 38px;
	height: 38px;
	border-radius: 999px;
	background: var(--mint);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	margin-bottom: 0.6rem;
	color: var(--navy);
}

.card-title {
	margin: 0 0 0.3rem;
	font-size: 1rem;
	color: var(--dark-mint);
}

.card-body {
	margin: 0 0 0.7rem;
	font-size: 0.8rem;
	color: var(--light-gray);
}

.card-link {
	font-size: 1rem;
	font-weight: 600;
	color: var(--coral);
}

/* How it works */

.steps {
	display: grid;
	gap: 1rem;
}

@media (min-width: 720px) {
	.steps {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.step {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 1rem 1rem 1.1rem;
	border: 1px dashed var(--soft-charcoal);
}

.step-number {
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: var(--charcoal);
	color: var(--white);
	font-size: 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.5rem;
}

.step-title {
	margin: 0 0 0.3rem;
	font-size: 1rem;
}

.step-body {
	margin: 0;
	font-size: 1rem;
	color: var(--soft-charcoal);
}

/* Testimonials */

.testimonials {
	display: grid;
	gap: 1.3rem;
}

@media (min-width: 720px) {
	.testimonials {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.testimonial {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 1.2rem;
	border: 1px solid var(--soft-charcoal);
}

.testimonial-stars {
	color: var(--gold);
	font-size: 1rem;
	margin-bottom: 0.2rem;
}

.testimonial-text {
	margin: 0 0 0.8rem;
	font-size: 1rem;
	color: var(--soft-charcoal);
}

.testimonial-name {
	font-size: 0.8rem;
	font-weight: 600;
}

.testimonial-meta {
	font-size: 0.8rem;
	color: var(--soft-charcoal);
}

/* CTA / Contact */

.cta {
	background: linear-gradient(130deg, var(--charcoal), var(--soft-charcoal));
	border-radius: 24px;
	padding: 2rem 1.8rem;
	color: var(--soft-white);
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 900px) {
	.cta {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	}
}

.cta h2 {
	margin: 0 0 0.6rem;
	font-size: 1.4rem;
}

.cta p {
	margin: 0;
	font-size: 1rem;
	color: var(--light-gray);
}

.contact-form {
	display: grid;
	gap: 0.75rem;
}

.form-row {
	display: grid;
	gap: 0.75rem;
}

@media (min-width: 600px) {
	.form-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.field {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	font-size: 1rem;
}

.field label {
	color: var(--light-gray);
}

.field input,
.field select,
.field textarea {
	border-radius: 10px;
	border: 1px solid var(--soft-charcoal);
	background: var(--charcoal);
	padding: 0.6rem 0.7rem;
	font: inherit;
	color: var(--soft-white);
}

.field input::placeholder,
.field textarea::placeholder {
	color: var(--soft-charcoal);
}

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

.btn-submit {
	margin-top: 0.4rem;
	padding: 0.8rem 1.2rem;
	border-radius: 999px;
	border: none;
	background: var(--coral);
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	color: var(--charcoal);
}

.btn-submit:hover {
	filter: brightness(1.05);
}

/* Footer */

footer {
	padding: 1.8rem 0 1.5rem;
	font-size: 1rem;
	color: var(--text-muted);
}

.footer-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: space-between;
	align-items: center;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
}

.footer-links a {
	color: var(--soft-charcoal);
}

.footer-links a:hover {
	color: var(--soft-charcoal);
}
