/* ============================================================
   RMANch — elegant standalone stylesheet
   Palette: sage #DFECC6 · olive #6b7c2e · ink #0f172a · slate #475569
   Type:    Playfair Display (display) · Poppins (UI/body)
   ============================================================ */

:root {
	--brand: #dfecc6;
	--brand-deep: #b6d89c;
	--olive: #6b7c2e;
	--ink: #0f172a;
	--slate: #475569;
	--mist: #f6fbf0;
	--line: #e7ebe0;
	--white: #ffffff;
	--radius: 18px;
	--shadow-sm: 0 6px 18px rgba(15, 23, 42, 0.06);
	--shadow-md: 0 18px 45px rgba(15, 23, 42, 0.10);
	--shadow-lg: 0 35px 70px rgba(15, 23, 42, 0.16);
	--font-display: 'Playfair Display', Georgia, serif;
	--font-body: 'Poppins', system-ui, sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

html, body {
	overflow-x: hidden;
}

body {
	font-family: var(--font-body);
	color: var(--slate);
	background: var(--white);
	line-height: 1.75;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}

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

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

.container {
	max-width: 1140px;
	margin-inline: auto;
	padding-inline: 24px;
}

/* ---------- typography ---------- */

h1, h2, h3 {
	font-family: var(--font-display);
	color: var(--ink);
	font-weight: 600;
	line-height: 1.22;
}

.section-tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--olive);
	margin-bottom: 18px;
}

.section-tag::before {
	content: "";
	width: 34px;
	height: 1.5px;
	background: var(--olive);
	opacity: 0.6;
}

.section-title {
	font-size: clamp(30px, 4.2vw, 46px);
	max-width: 720px;
	margin-bottom: 20px;
}

.section-title em {
	font-style: italic;
	color: var(--olive);
}

.section-desc {
	max-width: 700px;
	font-size: 16px;
	font-weight: 300;
}

section {
	padding: 104px 0;
}

/* ---------- buttons ---------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.02em;
	padding: 14px 30px;
	border-radius: 999px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
	background: var(--ink);
	color: var(--white);
	box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
	background: #1e293b;
}

.btn-sage {
	background: var(--brand);
	color: var(--ink);
	box-shadow: 0 12px 30px rgba(182, 216, 156, 0.55);
}

.btn-sage:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(182, 216, 156, 0.75);
}

.btn-ghost {
	background: var(--white);
	color: var(--ink);
	border-color: var(--line);
}

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

/* ---------- header ---------- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 900;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line);
}

.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-block: 14px;
}

.brand img {
	height: 46px;
	width: auto;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 22px;
}

.header-social {
	display: flex;
	gap: 6px;
}

.header-social a,
.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	color: var(--slate);
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header-social a:hover,
.footer-social a:hover {
	background: var(--brand);
	color: var(--ink);
	transform: translateY(-2px);
}

.header-social svg,
.footer-social svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

/* ---------- hero ---------- */

.hero {
	background:
		radial-gradient(60% 90% at 85% 10%, rgba(223, 236, 198, 0.55), transparent 60%),
		linear-gradient(160deg, var(--white) 30%, var(--mist) 100%);
	padding: 110px 0 96px;
}

.hero-inner {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 64px;
	align-items: center;
}

.hero h1 {
	font-size: clamp(38px, 5.2vw, 60px);
	margin-bottom: 22px;
}

.hero h1 em {
	font-style: italic;
	background: linear-gradient(95deg, var(--olive), var(--brand-deep));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero p {
	max-width: 460px;
	font-weight: 300;
	margin-bottom: 34px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 36px;
}

.hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero-stat {
	font-size: 13px;
	font-weight: 500;
	color: var(--ink);
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 9px 18px;
	box-shadow: var(--shadow-sm);
}

.hero-media {
	position: relative;
}

.hero-media::before {
	content: "";
	position: absolute;
	inset: -28px;
	background: radial-gradient(circle, rgba(223, 236, 198, 0.8), transparent 70%);
	z-index: 0;
	border-radius: 50%;
}

.hero-media img {
	position: relative;
	z-index: 1;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
}

/* ---------- video ---------- */

.video-section {
	padding-top: 0;
}

.video-frame {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	aspect-ratio: 16 / 9;
	background: var(--ink);
	cursor: pointer;
}

.video-frame img,
.video-frame iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 0;
}

.video-frame .play-badge {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 84px;
	height: 84px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-md);
	transition: transform 0.25s ease;
}

.video-frame:hover .play-badge {
	transform: scale(1.08);
}

.play-badge svg {
	width: 26px;
	height: 26px;
	fill: var(--ink);
	margin-left: 4px;
}

/* ---------- why ---------- */

.why {
	background: linear-gradient(180deg, var(--white) 0%, var(--mist) 100%);
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
	margin-top: 64px;
}

.why-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 34px 28px;
	box-shadow: var(--shadow-sm);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
}

.why-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--brand);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin-bottom: 22px;
}

.why-card h3 {
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 12px;
}

.why-card p {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.85;
}

/* ---------- process ---------- */

.process-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: center;
}

.process-media img {
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
}

.process-steps {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 44px 0 38px;
}

.process-step {
	display: flex;
	gap: 24px;
	padding: 22px 0;
	border-bottom: 1px solid var(--line);
}

.process-step:last-child {
	border-bottom: 0;
}

.process-num {
	font-family: var(--font-display);
	font-size: 30px;
	font-style: italic;
	color: var(--brand-deep);
	line-height: 1;
	min-width: 54px;
}

.process-step h3 {
	font-family: var(--font-body);
	font-size: 15.5px;
	font-weight: 600;
	margin-bottom: 6px;
}

.process-step p {
	font-size: 14px;
	font-weight: 300;
}

/* ---------- founder ---------- */

.founder {
	background:
		radial-gradient(70% 120% at 90% 10%, rgba(223, 236, 198, 0.45), transparent 60%),
		linear-gradient(180deg, var(--white) 0%, var(--mist) 100%);
}

.founder-inner {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 70px;
	align-items: center;
}

.founder-media img {
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	border: 8px solid var(--white);
}

.founder blockquote {
	font-family: var(--font-display);
	font-size: clamp(19px, 2.2vw, 24px);
	font-style: italic;
	font-weight: 400;
	color: var(--ink);
	line-height: 1.65;
	margin-bottom: 30px;
}

.founder blockquote::before {
	content: "\201C";
	display: block;
	font-size: 74px;
	line-height: 0.6;
	color: var(--brand-deep);
	margin-bottom: 22px;
}

.founder-name {
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	color: var(--ink);
}

.founder-role {
	font-size: 13px;
	font-weight: 300;
	color: var(--slate);
}

/* ---------- stats ---------- */

.stats {
	background: linear-gradient(180deg, var(--mist) 0%, var(--white) 100%);
	text-align: center;
}

.stats .section-title,
.stats .section-desc {
	margin-inline: auto;
}

.stats .section-tag {
	justify-content: center;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	margin: 64px 0 48px;
}

.stat-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 44px 30px;
	box-shadow: var(--shadow-sm);
}

.stat-number {
	font-family: var(--font-display);
	font-size: 54px;
	font-weight: 600;
	color: var(--ink);
	line-height: 1;
	margin-bottom: 14px;
}

.stat-card h3 {
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 12px;
}

.stat-card p {
	font-size: 13.5px;
	font-weight: 300;
}

/* ---------- gallery ---------- */

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 60px;
}

.gallery-grid a {
	display: block;
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	box-shadow: var(--shadow-sm);
}

.gallery-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gallery-grid a:hover img {
	transform: scale(1.06);
}

/* ---------- cta band ---------- */

.cta-band {
	padding: 0 0 104px;
}

.cta-card {
	background:
		radial-gradient(80% 140% at 15% 0%, rgba(255, 255, 255, 0.75), transparent 55%),
		linear-gradient(120deg, var(--brand) 0%, #eef6dd 100%);
	border: 1px solid var(--line);
	border-radius: 26px;
	padding: 72px 40px;
	text-align: center;
	box-shadow: var(--shadow-md);
}

.cta-card h2 {
	color: var(--ink);
	font-size: clamp(28px, 3.6vw, 42px);
	margin-bottom: 14px;
}

.cta-card h2 em {
	font-style: italic;
	color: var(--olive);
}

.cta-card p {
	color: var(--slate);
	font-weight: 300;
	margin-bottom: 34px;
}

.cta-card .btn-sage {
	background: var(--ink);
	color: var(--white);
	box-shadow: var(--shadow-md);
}

/* ---------- footer ---------- */

.site-footer {
	background: var(--mist);
	border-top: 1px solid var(--line);
	padding: 70px 0 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 44px;
	padding-bottom: 54px;
}

.footer-grid h5 {
	font-family: var(--font-body);
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink);
	margin-bottom: 18px;
}

.footer-grid p {
	font-size: 14px;
	font-weight: 300;
	max-width: 300px;
}

.footer-grid a:hover {
	color: var(--olive);
}

.footer-social {
	display: flex;
	gap: 8px;
}

.footer-social a {
	background: var(--white);
	border: 1px solid var(--line);
}

.footer-bottom {
	border-top: 1px solid var(--line);
	padding: 22px 0;
	text-align: center;
	font-size: 13px;
	font-weight: 300;
}

/* ---------- whatsapp float ---------- */

.wa-float {
	position: fixed;
	right: 26px;
	bottom: 26px;
	z-index: 950;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #25d366;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
	animation: wa-pulse 2.4s infinite;
	transition: transform 0.2s ease;
}

.wa-float:hover {
	transform: scale(1.07);
}

.wa-float svg {
	width: 28px;
	height: 28px;
	fill: var(--white);
}

@keyframes wa-pulse {
	0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
	70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
	100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- booking modal ---------- */

body.rm-modal-open {
	overflow: hidden;
}

.rm-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 2000;
	background: rgba(15, 23, 42, 0.7);
	backdrop-filter: blur(6px);
	align-items: center;
	justify-content: center;
	padding: 24px;
	overflow-y: auto;
}

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

.rm-modal-box {
	background: var(--white);
	border-radius: 22px;
	max-width: 620px;
	width: 100%;
	max-height: 92vh;
	overflow-y: auto;
	position: relative;
	box-shadow: var(--shadow-lg);
	padding: 46px 42px 42px;
	animation: rm-pop 0.3s ease;
}

@keyframes rm-pop {
	from { opacity: 0; transform: translateY(18px) scale(0.98); }
	to { opacity: 1; transform: none; }
}

.rm-modal-close {
	position: absolute;
	top: 16px;
	right: 18px;
	width: 38px;
	height: 38px;
	border: none;
	border-radius: 50%;
	background: var(--mist);
	color: var(--slate);
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.rm-modal-close:hover {
	background: var(--brand);
	color: var(--ink);
}

.rm-modal-box .modal-tag {
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--olive);
	margin-bottom: 10px;
}

.rm-modal-box h2 {
	font-size: 30px;
	margin-bottom: 8px;
}

.rm-modal-box .modal-sub {
	font-size: 14px;
	font-weight: 300;
	margin-bottom: 30px;
}

/* form */

.booking-form .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.booking-form .form-row.single {
	grid-template-columns: 1fr;
}

.field {
	position: relative;
}

.field label {
	display: block;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: var(--ink);
	margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
	width: 100%;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 300;
	color: var(--ink);
	background: #fbfdf8;
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 13px 16px;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	appearance: none;
}

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

.field input::placeholder,
.field textarea::placeholder {
	color: #9aa5b5;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
	border-color: var(--brand-deep);
	background: var(--white);
	box-shadow: 0 0 0 4px rgba(182, 216, 156, 0.25);
}

.field.has-select::after {
	content: "";
	position: absolute;
	right: 16px;
	bottom: 20px;
	width: 8px;
	height: 8px;
	border-right: 1.5px solid var(--slate);
	border-bottom: 1.5px solid var(--slate);
	transform: rotate(45deg);
	pointer-events: none;
}

.booking-form .btn {
	width: 100%;
	margin-top: 10px;
	padding-block: 16px;
}

/* ---------- lightbox ---------- */

.rm-lightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 2200;
	background: rgba(15, 23, 42, 0.92);
	backdrop-filter: blur(8px);
	align-items: center;
	justify-content: center;
	padding: 56px 80px;
}

.rm-lightbox.rm-open {
	display: flex;
}

.rm-lightbox img {
	max-width: 100%;
	max-height: calc(100vh - 130px);
	width: auto;
	height: auto;
	border-radius: 14px;
	box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
	animation: rm-lb-in 0.3s ease;
	user-select: none;
}

@keyframes rm-lb-in {
	from { opacity: 0; transform: scale(0.96); }
	to { opacity: 1; transform: none; }
}

.rm-lb-close {
	position: absolute;
	top: 20px;
	right: 24px;
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease;
	z-index: 2;
}

.rm-lb-close:hover {
	background: var(--brand);
	color: var(--ink);
}

.rm-lb-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, transform 0.2s ease;
	z-index: 2;
}

.rm-lb-arrow:hover {
	background: var(--brand);
	color: var(--ink);
	transform: translateY(-50%) scale(1.08);
}

.rm-lb-prev { left: 20px; }
.rm-lb-next { right: 20px; }

.rm-lb-count {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.85);
	font-size: 13px;
	font-weight: 300;
	letter-spacing: 0.08em;
	background: rgba(255, 255, 255, 0.1);
	padding: 6px 16px;
	border-radius: 999px;
}

@media (max-width: 640px) {
	.rm-lightbox { padding: 60px 12px; }
	.rm-lb-arrow { width: 42px; height: 42px; }
	.rm-lb-prev { left: 8px; }
	.rm-lb-next { right: 8px; }
	.rm-lb-close { top: 12px; right: 12px; }
}

/* ---------- toast ---------- */

.rm-toast {
	position: fixed;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--ink);
	color: var(--white);
	font-size: 14px;
	font-weight: 300;
	padding: 15px 28px;
	border-radius: 14px;
	box-shadow: var(--shadow-lg);
	z-index: 2100;
	opacity: 0;
	transition: opacity 0.4s ease;
	max-width: min(92vw, 480px);
	text-align: center;
}

.rm-toast.rm-toast-visible {
	opacity: 1;
}

.rm-toast.rm-toast-error {
	background: #b91c1c;
}

/* ---------- reveal on scroll ---------- */

.reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */

@media (max-width: 1200px) {
	.hero-inner { gap: 48px; }
	.process-inner, .founder-inner { gap: 52px; }
}

@media (max-width: 992px) {
	section { padding: 78px 0; }

	.hero-inner,
	.process-inner,
	.founder-inner {
		grid-template-columns: 1fr;
		gap: 46px;
	}

	.hero { text-align: center; }
	.hero p { margin-inline: auto; }
	.hero-actions, .hero-stats { justify-content: center; }
	.hero-media { max-width: 560px; margin-inline: auto; }

	/* keep text before image on stacked layouts */
	.process-media { order: 2; max-width: 560px; margin-inline: auto; }
	.process-inner > div:last-child { order: 1; }

	.why-grid { grid-template-columns: repeat(2, 1fr); }
	.stats-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
	.gallery-grid { grid-template-columns: repeat(3, 1fr); }
	.footer-grid { grid-template-columns: 1fr; gap: 34px; }
	.founder-media { max-width: 420px; margin-inline: auto; }
	.cta-card { padding: 56px 30px; }
}

@media (max-width: 640px) {
	section { padding: 62px 0; }
	.container { padding-inline: 18px; }

	.hero { padding: 64px 0 58px; }
	.hero h1 { font-size: clamp(32px, 9vw, 40px); }
	.hero-actions .btn { width: 100%; max-width: 320px; }

	.brand img { height: 38px; }
	.header-social { display: none; }
	.site-header .btn { padding: 11px 20px; font-size: 13px; }

	.why-grid { grid-template-columns: 1fr; gap: 18px; }
	.why-card { padding: 28px 22px; }

	.process-step { gap: 16px; padding: 18px 0; }
	.process-num { font-size: 24px; min-width: 42px; }

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

	.stat-number { font-size: 44px; }
	.stat-card { padding: 34px 24px; }

	.cta-card { padding: 46px 22px; border-radius: 20px; }

	.booking-form .form-row { grid-template-columns: 1fr; margin-bottom: 14px; gap: 14px; }
	.rm-modal { padding: 14px; align-items: flex-start; }
	.rm-modal-box { padding: 40px 20px 26px; border-radius: 18px; margin-top: 12px; }
	.rm-modal-box h2 { font-size: 24px; }

	.wa-float { width: 50px; height: 50px; right: 18px; bottom: 18px; }
	.wa-float svg { width: 24px; height: 24px; }

	.footer-grid { padding-bottom: 40px; }
}

@media (max-width: 400px) {
	.gallery-grid { grid-template-columns: 1fr; }
	.hero-stat { font-size: 12px; padding: 8px 14px; }
}
