:root {
	--dark: #15140F;
	--dark-3: #232219;
	--ink: #15140F;
	--white: #FFFFFF;
	--muted: #B8B6AC;
	--muted-dim: #8B8980;
	--orange: #FF6C0F;
	--line-soft: rgba(255, 255, 255, 0.10);
	--r: 14px;
}


/* Changes in css */

.logo-style-top{
	width: 60%;
}

.logo-style-bottom{
	width: 20%;
	margin-bottom: 2%;
}





* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--dark);
	color: var(--white);
	font-family: "Nunito Sans", serif !important;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.08;
	color: var(--white);
}



a {
	color: inherit;
	text-decoration: none;
}

.wrap {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 28px;
}

.eyebrow {
    margin-bottom: 1%;
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #FFB77A;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
}

.eyebrow::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--orange);
	display: inline-block;
}

/* BUTTONS — icon + label, clear hierarchy */
button,
.btn {
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 600;
	font-size: 15px;
	border: none;
	cursor: pointer;
	border-radius: 999px;
	padding: 15px 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn svg {
	width: 17px;
	height: 17px;
	flex-shrink: 0;
}

.btn-primary {
	background: var(--orange);
	color: #fff;
	box-shadow: 0 6px 20px rgba(255, 108, 15, 0.35);
}

.btn-primary:hover {
	background: #E85F00;
	transform: translateY(-1px);
	box-shadow: 0 10px 28px rgba(255, 108, 15, 0.45);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border: 1.5px solid var(--line-soft);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline {
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, 0.24);
}

.btn-outline:hover {
	border-color: #fff;
}

.btn-sm {
	padding: 10px 20px;
	font-size: 13.5px;
}

.btn-sm svg {
	width: 15px;
	height: 15px;
}

.btn-block {
	width: 100%;
}

.cta-caption {
	font-size: 11.5px;
	color: var(--muted-dim);
	text-align: center;
	margin-top: 10px;
}

.urgency {
	background: #0D0C08;
	color: #EFEDE6;
	text-align: center;
	padding: 10px 16px;
	font-size: 12.5px;
	letter-spacing: 0.02em;
	border-bottom: 1px solid var(--line-soft);
}

.urgency strong {
	color: var(--orange);
	font-weight: 600;
}

header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(21, 20, 15, 0.85);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line-soft);
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 28px;
	max-width: 1160px;
	margin: 0 auto;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.nav-phone {
	
	font-size: 13px;
	color: var(--muted);
	display: none;
}

@media(min-width:640px) {
	.nav-phone {
		display: inline;
	}
}


.glow-tr {
	background-image: radial-gradient(ellipse 720px 480px at 88% -8%, rgba(255, 108, 15, 0.20), transparent 60%);
}

.glow-tl {
	background-image: radial-gradient(ellipse 640px 460px at 6% 0%, rgba(255, 108, 15, 0.16), transparent 60%);
}

.glow-c {
	background-image: radial-gradient(ellipse 700px 420px at 50% 0%, rgba(255, 108, 15, 0.18), transparent 65%);
}

.glow-br {
	background-image: radial-gradient(ellipse 680px 460px at 92% 100%, rgba(255, 108, 15, 0.14), transparent 60%);
}

/* HERO */
.hero {
	padding: 60px 0 0;
	position: relative;
	overflow: hidden;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 48px;
	align-items: center;
	padding-bottom: 60px;
}

@media(max-width:940px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 36px;
		padding-bottom: 40px;
	}
}

.hook-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 108, 15, 0.14);
	border: 1px solid rgba(255, 108, 15, 0.35);
	color: #FFB77A;
	font-size: 12px;
	font-weight: 600;
	padding: 7px 14px;
	border-radius: 999px;
	margin-bottom: 18px;
}

.hero h1 {
	font-size: 47px;
	margin: 0 0 16px;
	max-width: 16ch;
}

@media(max-width:640px) {
	.hero h1 {
		font-size: 31px;
	}
}

.hero p.lead {
	font-size: 16.5px;
	color: var(--muted);
	max-width: 46ch;
	margin-bottom: 26px;
}

.bullets {
	list-style: none;
	display: grid;
	gap: 11px;
	margin-bottom: 28px;
}

.bullets li {
	display: flex;
	align-items: baseline;
	gap: 10px;
	font-size: 14.5px;
	color: #D9D7CE;
}

.bullets li::before {
	content: "✓";
	color: var(--orange);
	font-weight: 700;
}

.hero-cta-row {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

.price-row {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.price-chip {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--line-soft);
	border-radius: 12px;
	padding: 12px 16px;
}

.price-chip .amt {
	
	font-size: 20px;
	font-weight: 600;
	color: var(--orange);
}

.price-chip .lbl {
	font-size: 11px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.form-card {
	background: #fff;
	color: var(--ink);
	border-radius: var(--r);
	padding: 30px 28px;
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.form-card h2 {
	font-size: 22px;
	margin-bottom: 5px;
	color: var(--ink);
}

.form-card .sub {
	font-size: 13px;
	color: #69675E;
	margin-bottom: 20px;
}

form {
	display: grid;
	gap: 13px;
}

form label {
	font-size: 10.5px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #69675E;
	display: block;
	margin-bottom: 5px;
}

form input,
form select,
form textarea {
	width: 100%;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	padding: 13px 14px;
	border: 1.5px solid #EBE8E1;
	border-radius: 10px;
	background: #FAFAF9;
	color: var(--ink);
}

form input:focus,
form select:focus,
form textarea:focus {
	outline: none;
	border-color: var(--orange);
	background: #fff;
}

.form-note {
	font-size: 11.5px;
	color: #8B8980;
	margin-top: 2px;
	text-align: center;
}

.trust-mini {
	display: flex;
	gap: 16px;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid #EBE8E1;
	flex-wrap: wrap;
}

.trust-mini span {
	font-size: 11px;
	color: #69675E;
	
}

.trust {
	background: rgba(255, 255, 255, 0.03);
	padding: 16px 0;
	border-top: 1px solid var(--line-soft);
	border-bottom: 1px solid var(--line-soft);
}

.trust .wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: space-between;
	
	font-size: 12px;
	color: var(--muted);
}

.trust span {
	display: flex;
	align-items: center;
	gap: 7px;
}

.trust span::before {
	content: "✓";
	color: var(--orange);
	font-weight: 700;
}

section {
	padding: 78px 0;
	position: relative;
}

.section-head {
	max-width: 60ch;
	margin-bottom: 40px;
}

.section-head h2 {
	font-size: 30px;
	margin-top: 12px;
}

.section-head p {
	color: var(--muted);
	margin-top: 10px;
	font-size: 15px;
}

@media(max-width:640px) {
	.section-head h2 {
		font-size: 23px;
	}

	section {
		padding: 54px 0;
	}
}

/* GALLERY — video-led, redesigned */
.gallery-layout {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 20px;
	align-items: start;
}

@media(max-width:860px) {
	.gallery-layout {
		grid-template-columns: 1fr;
	}
}
/* GALLERY — video-led, redesigned */
.gallery-layouts {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	align-items: start;
}

@media(max-width:860px) {
	.gallery-layouts {
		grid-template-columns: 1fr;
	}
}

.video-feature {
	border-radius: var(--r);
	overflow: hidden;
	border: 1px solid var(--line-soft);
	aspect-ratio: 16/10;
	background: #000;
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
	position: relative;
}


.video-features {
	border-radius: var(--r);
	overflow: hidden;
	border: 1px solid var(--line-soft);
	aspect-ratio: 16/10;
	background: #000;
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
	position: relative;
}

.video-featuress {
	border-radius: var(--r);
	overflow: hidden;
	border: 1px solid var(--line-soft);
	aspect-ratio: 16/10;
	background: #000;
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
	position: relative;
}

.video-feature video {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.video-feature .vtag {
	position: absolute;
	top: 16px;
	left: 16px;
	background: rgba(21, 20, 15, 0.75);
	backdrop-filter: blur(6px);
	color: #fff;

	font-size: 11px;
	padding: 6px 12px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	gap: 7px;
	pointer-events: none;
}

.video-feature .vtag::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #FF4747;
}

.video-features video {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.video-features .vtag {
	position: absolute;
	top: 16px;
	left: 16px;
	background: rgba(21, 20, 15, 0.75);
	backdrop-filter: blur(6px);
	color: #fff;

	font-size: 11px;
	padding: 6px 12px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	gap: 7px;
	pointer-events: none;
}

.video-features .vtag::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #FF4747;
}

.video-featuress video {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.video-featuress .vtag {
	position: absolute;
	top: 16px;
	left: 16px;
	background: rgba(21, 20, 15, 0.75);
	backdrop-filter: blur(6px);
	color: #fff;

	font-size: 11px;
	padding: 6px 12px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	gap: 7px;
	pointer-events: none;
}

.video-featuress .vtag::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #FF4747;
}

.photo-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.g-tile {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 1.2/1;
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid var(--line-soft);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	text-align: center;
	padding: 10px;
	transition: background .2s ease, border-color .2s ease;
}

.g-tile:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 108, 15, 0.3);
}

.g-tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	position: absolute;
	inset: 0;
}

.g-tile .cam-icon {
	width: 22px;
	height: 22px;
	opacity: 0.55;
}

.g-tile .placeholder-label {
	font-size: 10.5px;
	color: var(--muted-dim);
	line-height: 1.5;
}

.g-tile .placeholder-label b {
	display: block;
	color: #D9D7CE;
	font-size: 11.5px;
	margin-bottom: 2px;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 600;
}

.compare {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

@media(max-width:760px) {
	.compare {
		grid-template-columns: 1fr;
	}
}

.compare>div {
	padding: 28px 24px;
	border-radius: var(--r);
	border: 1px solid var(--line-soft);
	background: rgba(255, 255, 255, 0.03);
}

.compare .head {

	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--muted);
	margin-bottom: 10px;
}

.compare .price {

	font-size: 25px;
	font-weight: 600;
	margin-bottom: 4px;
	color: #fff;
}

.compare ul {
	list-style: none;
	margin-top: 14px;
	font-size: 13.5px;
	color: var(--muted);
}

.compare ul li {
	padding: 4px 0;
}

.compare .featured {
	background: var(--orange);
	border-color: var(--orange);
	position: relative;
	box-shadow: 0 20px 50px rgba(255, 108, 15, 0.30);
}

.compare .featured .head {
	color: rgba(21, 20, 15, 0.65);
}

.compare .featured .price {
	color: var(--ink);
}

.compare .featured ul {
	color: rgba(21, 20, 15, 0.75);
}

.compare .tag {
	position: absolute;
	top: 20px;
	right: 20px;
	background: var(--ink);
	color: var(--orange);

	font-size: 10px;
	letter-spacing: 0.05em;
	padding: 5px 10px;
	border-radius: 999px;
	text-transform: uppercase;
}

.location-box {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--line-soft);
	border-radius: var(--r);
	padding: 32px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

@media(max-width:760px) {
	.location-box {
		grid-template-columns: 1fr;
	}
}

.location-box p {
	color: var(--muted);
}

.location-box ul {
	list-style: none;
	display: grid;
	gap: 10px;
	font-size: 14px;
}

.location-box ul li {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid var(--line-soft);
	padding-bottom: 10px;
}

.location-box ul li span:first-child {
	color: #D9D7CE;
}

.location-box ul li .dist {
	font-size: 12px;
	color: var(--orange);
	font-weight: 600;
}

.cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

@media(max-width:900px) {
	.cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media(max-width:600px) {
	.cards {
		grid-template-columns: 1fr;
	}
}

.card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--line-soft);
	border-radius: var(--r);
	padding: 28px 24px;
	transition: box-shadow .2s ease, transform .2s ease, background .2s ease;
}

.card:hover {
	box-shadow: 0 20px 44px rgba(255, 108, 15, 0.12);
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.05);
}

.card .n {
	font-size: 11px;
	color: var(--orange);
	margin-bottom: 10px;
	font-weight: 600;
}

.card h3 {
	font-size: 18.5px;
	margin-bottom: 8px;
}

.card p {
	font-size: 13.5px;
	color: var(--muted);
}

.faq-item {
	border-bottom: 1px solid var(--line-soft);
}

.faq-item:first-child {
	border-top: 1px solid var(--line-soft);
}

.faq-q {
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	padding: 20px 2px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 600;
	font-size: 15.5px;
	cursor: pointer;
	color: #fff;
	gap: 16px;
}

.faq-q .plus {
	font-size: 20px;
	color: var(--orange);
	transition: transform .2s ease;
	flex-shrink: 0;
}

.faq-item.open .plus {
	transform: rotate(45deg);
}

.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height .25s ease;
}

.faq-a p {
	font-size: 14px;
	color: var(--muted);
	padding-bottom: 20px;
	max-width: 65ch;
}

.bottom-cta {
	text-align: center;
	padding: 72px 0;
}

.bottom-cta h2 {
	font-size: 30px;
	margin-bottom: 12px;
}

.bottom-cta p {
	color: var(--muted);
	margin-bottom: 30px;
	font-size: 15px;
}

.bottom-cta .cta-row {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

footer {
	padding: 26px 0;
	border-top: 1px solid var(--line-soft);
}

footer .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 12.5px;
	color: var(--muted-dim);
}

.sticky-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	z-index: 60;
	box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.3);
}

.sticky-cta a {
	flex: 1;
	text-align: center;
	padding: 14px 8px;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 600;
	font-size: 13.5px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
}

.sticky-cta svg {
	width: 16px;
	height: 16px;
}

.sticky-cta .call {
	background: var(--dark-3);
	color: #fff;
}

.sticky-cta .wa {
	background: #fff;
	color: var(--ink);
}

.sticky-cta .tour {
	background: var(--orange);
	color: #fff;
}

@media(min-width:760px) {
	.sticky-cta {
		display: none;
	}
}

@media(max-width:760px) {
	body {
		padding-bottom: 54px;
	}
}

.reveal {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity .5s ease, transform .5s ease;
}

.reveal.in {
	opacity: 1;
	transform: none;
}

@media(prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}