/* ==========================================================================
   Izavera Suites — main stylesheet
   Colors / fonts sourced from the brand spec:
   Navy #1e222f · Gold #d1b58d · Off-white #dbdbd9 · White #ffffff
   Display: Plus Jakarta Sans · Body/UI: Outfit
   ========================================================================== */

:root {
	--navy: #1e222f;
	--navy-soft: #262b3b;
	--gold: #d1b58d;
	--offwhite: #dbdbd9;
	--white: #ffffff;

	--font-display: 'Plus Jakarta Sans', Georgia, serif;
	--font-body: 'Outfit', Arial, sans-serif;

	--max-width: 1920px;
	--gutter: clamp(20px, 5vw, 100px);
	--section-space: clamp(64px, 10vw, 160px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	width: 100%;
	max-width: 100vw;
	overflow-x: hidden;
	background: var(--white);
	color: var(--navy);
	font-family: var(--font-body);
	font-weight: 300;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

.screen-reader-text {
	position: absolute;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}
.skip-link.screen-reader-text:focus {
	position: fixed;
	top: 10px; left: 10px;
	width: auto; height: auto;
	clip: auto;
	background: var(--navy);
	color: var(--white);
	padding: 12px 18px;
	z-index: 9999;
	border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.wrap {
	width: 100%;
	max-width: var(--max-width);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.section { padding-block: var(--section-space); position: relative; overflow: hidden; }

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 22px;
}
.eyebrow::after {
	content: '';
	display: block;
	height: 1px;
	width: clamp(40px, 8vw, 140px);
	background: currentColor;
	opacity: .6;
}

h2 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(2rem, 3.6vw, 3.6rem);
	line-height: 1.08;
	letter-spacing: -0.01em;
	color: var(--gold);
	text-transform: uppercase;
}

.subheading {
	font-family: var(--font-body);
	font-weight: 500;
	font-size: clamp(1rem, 1.4vw, 1.35rem);
	letter-spacing: 0.02em;
	margin-top: 22px;
	max-width: 34ch;
}

.body-text {
	margin-top: 20px;
	font-weight: 300;
	font-size: clamp(0.95rem, 1vw, 1.05rem);
	line-height: 1.85;
	max-width: 46ch;
	letter-spacing: 0.01em;
}
.body-text p + p { margin-top: 1.2em; }
.section-suites .body-text,
.section-location .body-text,
.section-jacuzzi .body-text { color: #4d5265; }

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 34px;
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
	padding-bottom: 6px;
	border-bottom: 1px solid rgba(209,181,141,.5);
	transition: border-color .25s ease, gap .25s ease;
}
.text-link:hover { gap: 16px; border-color: var(--gold); }

.decor-arcs {
	position: absolute;
	color: var(--gold);
	opacity: .55;
	pointer-events: none;
	z-index: 0;
	width: clamp(220px, 26vw, 420px);
	height: auto;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--navy);
	transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.book-cta-mobile { display: none; }
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-block: 20px;
}
.site-logo img { height: 40px; width: auto; }

.primary-menu {
	display: flex;
	gap: clamp(18px, 2.4vw, 44px);
	flex-wrap: wrap;
}
.primary-menu a {
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--white);
	transition: color .2s ease;
}
.primary-menu a:hover,
.primary-menu a:focus-visible { color: var(--gold); }

.book-cta {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gold);
	text-align: right;
	max-width: 130px;
	border-bottom: 1px solid rgba(209,181,141,.5);
	padding-bottom: 4px;
	flex-shrink: 0;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 34px;
	height: 34px;
	background: none;
	border: none;
	padding: 0;
	flex-shrink: 0;
}
.nav-toggle span {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--white);
	transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
	background: var(--white);
	position: relative;
	padding-block: clamp(40px, 6vw, 90px) clamp(60px, 8vw, 120px);
	overflow: hidden;
}
.hero-decor { top: -40px; right: 2%; }
.hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
}
.hero-text h1 {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(2.6rem, 9vw, 7.5rem);
	line-height: 0.98;
	letter-spacing: -0.01em;
	color: var(--gold);
	text-transform: uppercase;
}
.hero-media {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
.hero-media-main img,
.hero-media-accent img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 4/3;
}
.hero-media-accent { max-width: 60%; margin-left: auto; }

/* ==========================================================================
   Overview
   ========================================================================== */
.section-overview { background: var(--navy); color: var(--offwhite); }
.section-overview-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	align-items: center;
}
.overview-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.overview {
background: linear-gradient(180deg, rgba(2, 5, 14, 1) 70%, rgba(30, 34, 47, 1) 70%);

}

.amenities_section {
	background: linear-gradient(180deg, rgba(2, 5, 14, 1) 70%, rgba(30, 34, 47, 1) 70%);

}

/* ==========================================================================
   Suites
   ========================================================================== */
.section-suites { background: var(--white); }
.section-suites-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	align-items: start;
}
.suites-gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
.suites-gallery-item img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.suites-gallery-item-2 { margin-top: 34px; }
.suites-gallery-item-4 { margin-top: -34px; }
.suites-note {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid #e6e2da;
	font-size: 12px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gold);
}

/* ==========================================================================
   Location
   ========================================================================== */
.section-location { background: var(--white); }
.section-location-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	align-items: center;
}
.location-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* ==========================================================================
   Philosophy
   ========================================================================== */
.section-philosophy { background: var(--navy); color: var(--offwhite); }
.philosophy-decor { bottom: -60px; left: -10%; transform: scaleX(-1); }
.section-philosophy-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	align-items: center;
}
.philosophy-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* ==========================================================================
   Jacuzzi
   ========================================================================== */
.section-jacuzzi { background: var(--white); }
.section-jacuzzi-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	align-items: center;
}
.jacuzzi-media img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }

/* ==========================================================================
   Experiences
   ========================================================================== */
.experiences_section {
	background: #02050E;
background: linear-gradient(180deg, rgba(2, 5, 14, 1) 70%, rgba(30, 34, 47, 1) 70%);
}
.section-experiences { background: var(--navy); color: var(--offwhite); }
.experiences-decor { top: -20%; right: -8%; }
.experiences-heading-row { position: relative; z-index: 1; margin-bottom: 44px; }
.section-experiences-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
}
.experiences-media { position: relative; }
.experiences-media img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.experiences-tag {
	position: absolute;
	left: 20px; bottom: 20px;
	display: flex;
	align-items: center;
	gap: 14px;
	background: rgba(30,34,47,.75);
	padding: 12px 18px;
	border-radius: 999px;
	backdrop-filter: blur(6px);
}
.experiences-dots { display: flex; gap: 6px; }
.experiences-dots i {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: rgba(255,255,255,.4);
	display: block;
}
.experiences-dots i:first-child { background: var(--gold); }
.experiences-tag-label {
	font-size: 12px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--white);
}
.experiences-text .body-text { color: var(--offwhite); max-width: 42ch; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
	position: relative;
	background: var(--navy);
	color: var(--offwhite);
	padding-top: clamp(60px, 8vw, 120px);
	overflow: hidden;
}
.footer-decor {
	position: absolute;
	left: -18%; bottom: -30%;
	width: 60vw; max-width: 800px;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background: var(--navy-soft);
	pointer-events: none;
}
.footer-inner { position: relative; z-index: 1; }
.footer-heading {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(2.2rem, 5vw, 4rem);
	line-height: 1;
	color: var(--gold);
	text-transform: uppercase;
	max-width: 12ch;
}
.footer-columns {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	margin-top: clamp(40px, 6vw, 90px);
	padding-bottom: 60px;
	border-bottom: 1px solid rgba(219,219,217,.15);
}
.footer-label {
	display: block;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 18px;
}
.footer-menu-list { display: flex; flex-direction: column; gap: 12px; }
.footer-menu-list a { font-size: 14px; font-weight: 300; color: var(--offwhite); transition: color .2s ease; }
.footer-menu-list a:hover { color: var(--gold); }
.footer-contact p { margin-bottom: 10px; font-size: 14px; font-weight: 300; }
.footer-address { max-width: 26ch; }
.footer-label-inline { color: var(--gold); margin-right: 4px; }
.footer-logo { display: flex; align-items: flex-start; justify-content: flex-start; }
.footer-logo img { height: 40px; width: auto; }
.footer-bottom {
	padding-block: 26px;
	font-size: 12px;
	letter-spacing: 0.05em;
	color: rgba(219,219,217,.6);
}

/* ==========================================================================
   Tablet — 640px+
   ========================================================================== */
@media (min-width: 640px) {
	.suites-gallery { gap: 24px; }
	.footer-columns { grid-template-columns: 1fr 1fr; }
	.footer-logo { grid-column: 1 / -1; }
}

/* ==========================================================================
   Desktop — 900px+
   ========================================================================== */
@media (min-width: 900px) {
	.nav-toggle { display: none; }

	.hero-inner { grid-template-columns: 1fr 1fr; gap: 60px; }
	.hero-media { grid-template-columns: 1.4fr 1fr; align-items: end; }
	.hero-media-accent { max-width: 100%; margin-left: 0; }

	.section-overview-inner { grid-template-columns: 1.1fr 0.9fr; }

	.section-suites-inner { grid-template-columns: 1fr 0.85fr; gap: 70px; }

	.section-location-inner { grid-template-columns: 0.9fr 1.1fr; }
	.section-location-inner .location-media { order: 1; }
	.section-location-inner .location-text { order: 2; }

	.section-philosophy-inner { grid-template-columns: 1fr 1fr; gap: 70px; }

	.section-jacuzzi-inner { grid-template-columns: 1.1fr 0.9fr; gap: 70px; }

	.section-experiences-inner { grid-template-columns: 0.9fr 1.1fr; gap: 80px; }

	.footer-columns { grid-template-columns: 1.2fr 1fr 1fr 1fr; align-items: start; }
	.footer-logo { grid-column: auto; justify-content: flex-end; }
}

/* ==========================================================================
   Mobile nav — below 900px
   ========================================================================== */
@media (max-width: 899.98px) {
	.nav-toggle { display: flex; }
	.primary-nav {
		position: fixed;
		inset: 0 0 0 auto;
		top: 76px;
		width: min(320px, 84vw);
		height: calc(100vh - 76px);
		background: var(--navy);
		border-left: 1px solid rgba(255,255,255,.08);
		transform: translateX(100%);
		transition: transform .3s ease;
		padding: 32px 28px;
		overflow-y: auto;
		z-index: 90;
	}
	.primary-nav.is-open { transform: translateX(0); }
	.primary-menu { flex-direction: column; gap: 22px; }
	.book-cta { display: none; }
	.book-cta-mobile {
		display: inline-flex;
		margin-top: 30px;
		font-size: 13px;
		font-weight: 500;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		color: var(--gold);
		border-bottom: 1px solid rgba(209,181,141,.5);
		padding-bottom: 4px;
	}
}

/* ==========================================================================
   Large desktop refinement
   ========================================================================== */
@media (min-width: 1440px) {
	:root { font-size: 17px; }
}
