/* Marquee Club — global and page-specific overrides. Bootstrap 5 loaded first. */

:root {
	--gold: #C9A84C;
	--gold-light: #E8C96B;
	--gold-pale: #f0dfa0;
	--black: #080808;
	--dark: #0f0f0f;
	--dark2: #161616;
	--dark3: #1e1e1e;
	--white: #F5F0E8;
	--gray: #888;
}

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

html {
	scroll-behavior: smooth;
}

body {
	background: var(--black);
	color: var(--white);
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	overflow-x: hidden;
	cursor: none;
}

/* Custom Cursor */
.cursor {
	width: 10px;
	height: 10px;
	background: var(--gold);
	border-radius: 50%;
	position: fixed;
	pointer-events: none;
	z-index: 9999;
	transition: transform 0.15s ease;
	transform: translate(-50%, -50%);
}

.cursor-ring {
	width: 36px;
	height: 36px;
	border: 1px solid rgba(201, 168, 76, 0.5);
	border-radius: 50%;
	position: fixed;
	pointer-events: none;
	z-index: 9998;
	transition: all 0.35s ease;
	transform: translate(-50%, -50%);
}

/* Nav */
.site-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 28px 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: linear-gradient(to bottom, rgba(8, 8, 8, 0.95), transparent);
}

.site-nav__logo {
	font-family: 'Cormorant Garamond', serif;
	font-size: 28px;
	font-weight: 300;
	letter-spacing: 0.25em;
	color: var(--white);
	text-decoration: none;
}

.site-nav__logo span {
	color: var(--gold);
}

.site-nav__links {
	display: flex;
	gap: 40px;
	list-style: none;
}

.site-nav__links a {
	color: rgba(245, 240, 232, 0.6);
	text-decoration: none;
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	transition: color 0.3s;
}

.site-nav__links a:hover {
	color: var(--gold);
}

.site-nav__cta {
	background: transparent;
	border: 1px solid var(--gold);
	color: var(--gold);
	padding: 10px 26px;
	font-family: 'Montserrat', sans-serif;
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	cursor: none;
	transition: all 0.3s;
	text-decoration: none;
}

.site-nav__cta:hover {
	background: var(--gold);
	color: var(--black);
}

/* Hero */
.hero {
	min-height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
		radial-gradient(ellipse at 20% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 50%),
		linear-gradient(135deg, #080808 0%, #111 50%, #080808 100%);
}

.hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
	background-size: 80px 80px;
	mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero__content {
	position: relative;
	text-align: center;
	max-width: 900px;
	padding: 0 40px;
	animation: fadeUp 1.2s ease forwards;
	opacity: 0;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero__eyebrow {
	font-size: 10px;
	letter-spacing: 0.4em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
	content: '';
	display: block;
	width: 40px;
	height: 1px;
	background: var(--gold);
	opacity: 0.6;
}

.hero h1 {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(52px, 8vw, 110px);
	font-weight: 300;
	line-height: 1.0;
	letter-spacing: 0.02em;
	margin-bottom: 12px;
}

.hero h1 em {
	font-style: italic;
	color: var(--gold);
}

.hero__sub {
	font-size: 12px;
	letter-spacing: 0.15em;
	color: rgba(245, 240, 232, 0.5);
	margin-top: 24px;
	margin-bottom: 52px;
	text-transform: uppercase;
}

.hero__actions {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
	background: var(--gold);
	color: var(--black);
	padding: 16px 44px;
	font-family: 'Montserrat', sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	border: none;
	cursor: none;
	transition: all 0.3s;
	text-decoration: none;
	display: inline-block;
}

.btn-primary:hover {
	background: var(--gold-light);
	transform: translateY(-2px);
}

.btn-primary--full {
	width: 100%;
	font-size: 11px;
	padding: 18px;
}

.btn-secondary {
	background: transparent;
	color: var(--white);
	padding: 16px 44px;
	font-family: 'Montserrat', sans-serif;
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	border: 1px solid rgba(245, 240, 232, 0.25);
	cursor: none;
	transition: all 0.3s;
	text-decoration: none;
	display: inline-block;
}

.btn-secondary:hover {
	border-color: var(--gold);
	color: var(--gold);
}

/* Scroll indicator */
.scroll-indicator {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	opacity: 0.4;
	animation: fadeUp 1.2s ease 0.6s forwards;
}

.scroll-indicator span {
	font-size: 9px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
}

.scroll-line {
	width: 1px;
	height: 50px;
	background: linear-gradient(to bottom, var(--gold), transparent);
	animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {

	0%,
	100% {
		opacity: 0.4;
		transform: scaleY(1);
	}

	50% {
		opacity: 1;
		transform: scaleY(1.2);
	}
}

/* Stats bar */
.stats-bar {
	background: var(--dark2);
	border-top: 1px solid rgba(201, 168, 76, 0.15);
	border-bottom: 1px solid rgba(201, 168, 76, 0.15);
	padding: 32px 60px;
	display: flex;
	justify-content: center;
	gap: 80px;
}

.stat {
	text-align: center;
}

.stat__number {
	font-family: 'Cormorant Garamond', serif;
	font-size: 42px;
	font-weight: 300;
	color: var(--gold);
	line-height: 1;
}

.stat__label {
	font-size: 9px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(245, 240, 232, 0.4);
	margin-top: 6px;
}

/* Section defaults */
section {
	padding: 120px 60px;
}

.section-label {
	font-size: 9px;
	letter-spacing: 0.4em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 14px;
}

.section-label::before {
	content: '';
	display: block;
	width: 30px;
	height: 1px;
	background: var(--gold);
}

.section-label--center {
	justify-content: center;
}

.section-heading {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(36px, 5vw, 62px);
	font-weight: 300;
	line-height: 1.1;
}

.section-heading em {
	font-style: italic;
	color: var(--gold);
}

.section-heading--center {
	text-align: center;
}

/* About */
.about-wrap {
	background: var(--dark);
}

.about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 100px;
	align-items: center;
	max-width: 1300px;
	margin: 0 auto;
	padding: 120px 60px;
}

.about__visual {
	position: relative;
}

.about__box {
	border: 1px solid rgba(201, 168, 76, 0.2);
	padding: 60px;
	background: var(--dark2);
	position: relative;
}

.about__box::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 40px;
	width: 60px;
	height: 2px;
	background: var(--gold);
}

.about__quote {
	font-family: 'Cormorant Garamond', serif;
	font-size: 28px;
	font-style: italic;
	font-weight: 300;
	line-height: 1.5;
	color: var(--white);
	margin-bottom: 30px;
}

.about__quote span {
	color: var(--gold);
}

.about__signature {
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(245, 240, 232, 0.4);
}

.about__corner {
	position: absolute;
	bottom: -20px;
	right: -20px;
	width: 80px;
	height: 80px;
	border-right: 1px solid var(--gold);
	border-bottom: 1px solid var(--gold);
	opacity: 0.4;
}

.about__text p {
	font-size: 14px;
	line-height: 1.9;
	color: rgba(245, 240, 232, 0.6);
	margin-bottom: 24px;
}

.about__heading {
	margin-bottom: 30px;
}

.about__pillars {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 40px;
}

.pillar {
	border-left: 2px solid rgba(201, 168, 76, 0.3);
	padding-left: 16px;
}

.pillar__title {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 4px;
}

.pillar__desc {
	font-size: 12px;
	color: rgba(245, 240, 232, 0.4);
	line-height: 1.5;
}

/* Gold divider */
.gold-divider {
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, transparent, var(--gold), transparent);
	opacity: 0.2;
}

/* Experiences */
.experiences-section {
	background: var(--black);
}

.experiences-section__inner {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 60px 120px;
}

.experiences-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 60px;
}

.experiences-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
}

.experience-card {
	position: relative;
	aspect-ratio: 3/4;
	overflow: hidden;
	cursor: none;
	background: var(--dark3);
}

.experience-card:first-child {
	grid-row: span 2;
	aspect-ratio: auto;
}

.exp-bg {
	position: absolute;
	inset: 0;
	transition: transform 0.7s ease;
}

.experience-card:hover .exp-bg {
	transform: scale(1.08);
}

.exp-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0.3) 50%, transparent 100%);
}

.exp-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 32px;
}

.exp-region {
	font-size: 9px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 8px;
}

.exp-name {
	font-family: 'Cormorant Garamond', serif;
	font-size: 26px;
	font-weight: 300;
	line-height: 1.2;
	margin-bottom: 12px;
}

.exp-tag {
	display: inline-block;
	border: 1px solid rgba(201, 168, 76, 0.4);
	padding: 4px 12px;
	font-size: 9px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(245, 240, 232, 0.6);
}

.exp-bg-1 {
	background: linear-gradient(135deg, #1a1208, #2d1f08, #1a1208);
}

.exp-bg-2 {
	background: linear-gradient(135deg, #080f1a, #0a1520, #080f1a);
}

.exp-bg-3 {
	background: linear-gradient(135deg, #0f1a0a, #142108, #0f1a0a);
}

.exp-bg-4 {
	background: linear-gradient(135deg, #1a080d, #200a10, #1a080d);
}

.exp-bg-5 {
	background: linear-gradient(135deg, #0a0f1a, #0d1420, #0a0f1a);
}

.exp-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	opacity: 0.15;
}

.exp-bg-1::after {
	background: radial-gradient(circle at 60% 40%, #C9A84C, transparent 60%);
}

.exp-bg-2::after {
	background: radial-gradient(circle at 30% 70%, #4C7AC9, transparent 60%);
}

.exp-bg-3::after {
	background: radial-gradient(circle at 70% 30%, #4CC96A, transparent 60%);
}

.exp-bg-4::after {
	background: radial-gradient(circle at 40% 60%, #C94C4C, transparent 60%);
}

.exp-bg-5::after {
	background: radial-gradient(circle at 50% 50%, #8A4CC9, transparent 60%);
}

/* Why section */
.why-section {
	background: var(--dark);
}

.why-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 100px;
	align-items: start;
}

.why-left {
	position: sticky;
	top: 120px;
}

.why-left__p {
	margin-top: 24px;
	font-size: 13px;
	line-height: 1.9;
	color: rgba(245, 240, 232, 0.45);
}

.why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.why-item {
	padding: 40px;
	border: 1px solid rgba(201, 168, 76, 0.1);
	background: var(--dark2);
	transition: all 0.3s;
}

.why-item:hover {
	border-color: rgba(201, 168, 76, 0.3);
	transform: translateY(-4px);
}

.why-item__icon {
	font-size: 28px;
	margin-bottom: 20px;
	display: block;
	color: var(--gold);
}

.why-item__title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 12px;
	color: var(--white);
}

.why-item__desc {
	font-size: 12px;
	line-height: 1.8;
	color: rgba(245, 240, 232, 0.45);
}

/* Testimonials */
.testimonials-section {
	background: var(--black);
	text-align: center;
	padding: 120px 60px;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	margin-top: 60px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.testimonial-card {
	background: var(--dark2);
	padding: 48px 40px;
	text-align: left;
	position: relative;
	border: 1px solid rgba(201, 168, 76, 0.08);
	transition: border-color 0.3s;
}

.testimonial-card:hover {
	border-color: rgba(201, 168, 76, 0.25);
}

.quote-mark {
	font-family: 'Cormorant Garamond', serif;
	font-size: 80px;
	line-height: 0.5;
	color: var(--gold);
	opacity: 0.3;
	margin-bottom: 20px;
	display: block;
}

.testimonial-text {
	font-family: 'Cormorant Garamond', serif;
	font-size: 18px;
	font-style: italic;
	font-weight: 300;
	line-height: 1.7;
	color: rgba(245, 240, 232, 0.8);
	margin-bottom: 32px;
}

.testimonial-author {
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
}

.testimonial-origin {
	font-size: 10px;
	color: rgba(245, 240, 232, 0.3);
	margin-top: 4px;
	letter-spacing: 0.1em;
}

/* Concierge / Form */
.concierge-section {
	background: var(--dark2);
	padding: 0;
	overflow: hidden;
}

.concierge-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 700px;
}

.concierge-left {
	padding: 100px 80px;
	background: var(--dark3);
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.concierge-left::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 1px;
	background: linear-gradient(to bottom, transparent, var(--gold), transparent);
	opacity: 0.3;
}

.concierge-left .section-heading {
	margin-bottom: 24px;
}

.concierge-left p {
	font-size: 13px;
	line-height: 1.9;
	color: rgba(245, 240, 232, 0.5);
	margin-bottom: 40px;
	max-width: 380px;
}

.concierge-promise {
	border-left: 2px solid var(--gold);
	padding-left: 20px;
	margin-top: 40px;
}

.concierge-promise p {
	font-family: 'Cormorant Garamond', serif;
	font-size: 20px;
	font-style: italic;
	color: rgba(245, 240, 232, 0.7);
	margin: 0;
}

.concierge-right {
	padding: 80px 80px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.form-title {
	font-size: 10px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 40px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.form-group {
	margin-bottom: 24px;
}

.form-group label {
	display: block;
	font-size: 9px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(245, 240, 232, 0.4);
	margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(201, 168, 76, 0.15);
	border-bottom: 1px solid rgba(201, 168, 76, 0.4);
	color: var(--white);
	padding: 12px 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 300;
	outline: none;
	transition: border-color 0.3s;
	cursor: none;
	border-radius: 0;
	-webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-bottom-color: var(--gold);
	background: rgba(201, 168, 76, 0.03);
}

.form-group select option {
	background: #1e1e1e;
}

.form-group textarea {
	height: 80px;
	resize: none;
}

.form-submit {
	margin-top: 10px;
}

/* Footer */
.site-footer {
	background: var(--dark2);
	border-top: 1px solid rgba(201, 168, 76, 0.15);
	padding: 80px 60px 40px;
}

.site-footer__top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
}

.site-footer__logo {
	display: block;
	margin-bottom: 20px;
	font-family: 'Cormorant Garamond', serif;
	font-size: 24px;
	font-weight: 300;
	letter-spacing: 0.25em;
	color: var(--white);
	text-decoration: none;
}

.site-footer__logo span {
	color: var(--gold);
}

.site-footer__tagline {
	font-family: 'Cormorant Garamond', serif;
	font-size: 16px;
	font-style: italic;
	color: rgba(245, 240, 232, 0.4);
	line-height: 1.7;
	margin-bottom: 30px;
}

.site-footer__contact {
	font-size: 12px;
	color: rgba(245, 240, 232, 0.4);
	margin-bottom: 8px;
}

.site-footer__contact a {
	color: var(--gold);
	text-decoration: none;
}

.site-footer__col-title {
	font-size: 9px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 24px;
}

.site-footer__links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.site-footer__links a {
	font-size: 12px;
	color: rgba(245, 240, 232, 0.4);
	text-decoration: none;
	transition: color 0.3s;
}

.site-footer__links a:hover {
	color: var(--gold);
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding-top: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-footer__copy {
	font-size: 11px;
	color: rgba(245, 240, 232, 0.2);
}

.site-footer__domain {
	font-size: 11px;
	color: rgba(201, 168, 76, 0.4);
	letter-spacing: 0.1em;
}

/* Reveal animation */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Alert overrides for dark theme */
.alert-danger {
	background: rgba(220, 53, 69, 0.15);
	border-color: rgba(201, 168, 76, 0.3);
	color: var(--white);
}

/* ========== Coming Soon page ========== */
.page-coming-soon body {
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}

.coming-soon-bg {
	position: fixed;
	inset: 0;
	background:
		radial-gradient(ellipse at 50% 40%, rgba(201, 168, 76, 0.07) 0%, transparent 65%),
		radial-gradient(ellipse at 10% 90%, rgba(201, 168, 76, 0.04) 0%, transparent 50%),
		radial-gradient(ellipse at 90% 10%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
	z-index: 0;
}

.coming-soon-grid {
	position: fixed;
	inset: 0;
	background-image:
		linear-gradient(rgba(201, 168, 76, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(201, 168, 76, 0.035) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
	z-index: 0;
}

.corner {
	position: fixed;
	width: 80px;
	height: 80px;
	opacity: 0.25;
	z-index: 1;
}

.corner-tl {
	top: 32px;
	left: 32px;
	border-top: 1px solid var(--gold);
	border-left: 1px solid var(--gold);
}

.corner-tr {
	top: 32px;
	right: 32px;
	border-top: 1px solid var(--gold);
	border-right: 1px solid var(--gold);
}

.corner-bl {
	bottom: 32px;
	left: 32px;
	border-bottom: 1px solid var(--gold);
	border-left: 1px solid var(--gold);
}

.corner-br {
	bottom: 32px;
	right: 32px;
	border-bottom: 1px solid var(--gold);
	border-right: 1px solid var(--gold);
}

.coming-soon-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 40px;
	animation: fadeUp 1.6s ease forwards;
	opacity: 0;
	max-width: 780px;
	width: 100%;
}

.coming-soon-logo {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(13px, 2vw, 17px);
	font-weight: 300;
	letter-spacing: 0.55em;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 10px;
}

.coming-soon-logo span {
	color: var(--gold);
}

.coming-soon-rule {
	width: 60px;
	height: 1px;
	background: linear-gradient(to right, transparent, var(--gold), transparent);
	margin: 22px auto;
	animation: ruleExpand 1.2s ease 0.4s forwards;
	transform: scaleX(0);
}

@keyframes ruleExpand {
	to {
		transform: scaleX(1);
	}
}

.coming-soon-eyebrow {
	font-size: 9px;
	letter-spacing: 0.45em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 30px;
	opacity: 0.8;
}

.page-coming-soon .coming-soon-content h1 {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(54px, 10vw, 110px);
	font-weight: 300;
	line-height: 0.95;
	letter-spacing: 0.01em;
	margin-bottom: 6px;
}

.page-coming-soon .coming-soon-content h1 em {
	font-style: italic;
	color: var(--gold);
}

.coming-soon-tagline {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(16px, 2.5vw, 22px);
	font-style: italic;
	font-weight: 300;
	color: rgba(245, 240, 232, 0.45);
	margin-top: 18px;
	margin-bottom: 52px;
	letter-spacing: 0.05em;
}

.diamond-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-bottom: 48px;
}

.diamond-divider::before,
.diamond-divider::after {
	content: '';
	display: block;
	width: 80px;
	height: 1px;
	background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.4));
}

.diamond-divider::after {
	background: linear-gradient(to left, transparent, rgba(201, 168, 76, 0.4));
}

.diamond {
	width: 7px;
	height: 7px;
	background: var(--gold);
	transform: rotate(45deg);
	opacity: 0.7;
}

.info-block {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 50px;
}

.info-line {
	font-size: 12px;
	letter-spacing: 0.12em;
	color: rgba(245, 240, 232, 0.45);
}

.info-line strong {
	color: rgba(245, 240, 232, 0.75);
	font-weight: 400;
}

.info-line a {
	color: var(--gold);
	text-decoration: none;
	transition: opacity 0.3s;
}

.info-line a:hover {
	opacity: 0.7;
}

.notify-label {
	font-size: 9px;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: rgba(245, 240, 232, 0.35);
	margin-bottom: 18px;
}

.notify-form {
	display: flex;
	gap: 0;
	max-width: 420px;
	margin: 0 auto;
	border: 1px solid rgba(201, 168, 76, 0.25);
}

.notify-form input {
	flex: 1;
	background: transparent;
	border: none;
	color: var(--white);
	padding: 14px 20px;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 300;
	outline: none;
	cursor: none;
}

.notify-form input::placeholder {
	color: rgba(245, 240, 232, 0.25);
}

.notify-form button {
	background: var(--gold);
	color: var(--black);
	border: none;
	padding: 14px 24px;
	font-family: 'Montserrat', sans-serif;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	cursor: none;
	transition: background 0.3s;
	white-space: nowrap;
}

.notify-form button:hover {
	background: var(--gold-light);
}

.domain-tag {
	position: fixed;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 10px;
	letter-spacing: 0.25em;
	color: rgba(201, 168, 76, 0.3);
	z-index: 2;
	text-transform: lowercase;
}

.particles {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 1;
	overflow: hidden;
}

.particle {
	position: absolute;
	width: 1px;
	height: 1px;
	background: var(--gold);
	border-radius: 50%;
	animation: floatUp linear infinite;
	opacity: 0;
}

@keyframes floatUp {
	0% {
		transform: translateY(0) scale(0);
		opacity: 0;
	}

	10% {
		opacity: 0.6;
		transform: translateY(-20px) scale(1);
	}

	90% {
		opacity: 0.2;
	}

	100% {
		transform: translateY(-400px) scale(0.5);
		opacity: 0;
	}
}

/* Responsive */
@media (max-width: 900px) {
	.site-nav {
		padding: 24px 30px;
	}

	.site-nav__links {
		display: none;
	}

	section {
		padding: 80px 30px;
	}

	.about {
		grid-template-columns: 1fr;
		gap: 50px;
		padding: 80px 30px;
	}

	.concierge-inner {
		grid-template-columns: 1fr;
	}

	.concierge-left {
		padding: 60px 30px;
	}

	.concierge-right {
		padding: 60px 30px;
	}

	.experiences-grid {
		grid-template-columns: 1fr 1fr;
	}

	.experience-card:first-child {
		grid-row: span 1;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.why-inner {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.why-left {
		position: static;
	}

	.why-grid {
		grid-template-columns: 1fr;
	}

	.stats-bar {
		gap: 30px;
		flex-wrap: wrap;
		padding: 30px;
	}

	.site-footer__top {
		grid-template-columns: 1fr 1fr;
	}

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

	.experiences-section__inner {
		padding: 0 30px 80px;
	}
}

@media (max-width: 600px) {
	.corner {
		width: 50px;
		height: 50px;
	}

	.notify-form {
		flex-direction: column;
	}

	.notify-form button {
		padding: 14px;
	}

	.page-coming-soon body {
		overflow: auto;
	}

	.page-coming-soon .coming-soon-content h1 {
		font-size: 60px;
	}
}
