/* Daniel Black — Professional Dominant & Master. Dark noir theme. */

@font-face {
	font-family: 'Bodoni Moda';
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url('../fonts/bodoni-moda-variable.woff2') format('woff2');
}

@font-face {
	font-family: 'Jost';
	font-style: normal;
	font-weight: 300 600;
	font-display: swap;
	src: url('../fonts/jost-variable.woff2') format('woff2');
}

:root {
	--black: #0a0a0a;
	--charcoal: #161616;
	--charcoal-2: #1f1f1f;
	--line: #2c2c2c;
	--off-white: #ece8e1;
	--grey: #a9a49c;
	--grey-dim: #7a766f;
	--accent: #b3986b;
	--serif: 'Bodoni Moda', Georgia, 'Times New Roman', Times, serif;
	--sans: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
	margin: 0;
	padding: 0;
	background: var(--black);
	color: var(--off-white);
	font-family: var(--sans);
	font-weight: 300;
	-webkit-font-smoothing: antialiased;
}

body {
	line-height: 1.75;
	font-size: 16px;
}

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

h1, h2, h3 {
	font-family: var(--serif);
	font-weight: 600;
	letter-spacing: 0.01em;
	color: var(--off-white);
	margin: 0 0 20px;
}

p { margin: 0 0 20px; color: var(--grey); }

::selection { background: var(--accent); color: #0a0a0a; }

/* Site header / nav */
.site-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 30px 5%;
}

.site-header .brand {
	font-family: var(--serif);
	font-size: 20px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--off-white);
}

.site-nav {
	display: flex;
	gap: 36px;
}

.site-nav a {
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--grey);
	padding-bottom: 4px;
	border-bottom: 1px solid transparent;
	transition: color .25s ease, border-color .25s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
	color: var(--off-white);
	border-color: var(--accent);
}

.nav-toggle {
	display: none;
	position: relative;
	width: 30px;
	height: 20px;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
}

.nav-toggle span {
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--off-white);
	transition: transform .25s ease, opacity .2s ease, top .25s ease;
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { top: 100%; transform: translateY(-100%); }

.nav-toggle.is-open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 50%; transform: translateY(-50%) rotate(-45deg); }

/* Hero */
.hero {
	position: relative;
	min-height: 78vh;
	display: flex;
	align-items: flex-end;
	background-size: cover;
	background-position: center 20%;
	background-color: var(--charcoal);
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10,10,10,.35) 0%, rgba(10,10,10,.55) 55%, rgba(10,10,10,.95) 100%);
}

.hero-content {
	position: relative;
	z-index: 2;
	padding: 0 5% 24px;
	max-width: 900px;
}

.hero h1 {
	font-size: 56px;
	line-height: 1.1;
}

.hero-sub {
	font-size: 18px;
	color: var(--grey);
	max-width: 560px;
}

/* Content */
main { background: var(--black); }

.section {
	width: 100%;
	margin: 0 auto;
	padding: 20px 6% 90px;
}

.section + .section { border-top: 1px solid var(--line); }

.section h2 {
	font-size: 30px;
	margin-bottom: 30px;
}

.section p { font-size: 17px; }

.section p:last-child { margin-bottom: 0; }

.lede {
	font-family: var(--serif);
	font-size: 21px;
	color: var(--off-white);
	line-height: 1.6;
}

/* Rooms grid (Studio page) — stacked, full width */
.rooms {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	background: var(--line);
	width: 100%;
	margin: 0 auto;
}

.room {
	position: relative;
	background: var(--charcoal);
	background-size: cover;
	background-position: center;
	min-height: 60vh;
	display: flex;
	align-items: flex-end;
}

.room::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10,10,10,.05) 0%, rgba(10,10,10,.35) 50%, rgba(10,10,10,.92) 100%);
}

.room-content {
	position: relative;
	z-index: 2;
	padding: 30px 34px;
}

.room h3 {
	font-size: 20px;
	letter-spacing: 0.06em;
	margin-bottom: 14px;
}

.room p { font-size: 15px; margin-bottom: 0; }

.amenities {
	width: 100%;
	margin: 0 auto;
	padding: 60px 6% 90px;
	text-align: center;
}

.amenities p { margin: 0 auto 14px; }

/* Buttons / CTA */
.btn {
	display: inline-block;
	padding: 14px 30px;
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	border: 1px solid var(--accent);
	background: transparent;
	color: var(--off-white);
	font-family: var(--sans);
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
	transition: background .25s ease, color .25s ease;
}

.btn:hover { background: var(--accent); color: #0a0a0a; }

.btn-row { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 10px; }

.cta-band {
	text-align: center;
	padding: 90px 6%;
	border-top: 1px solid var(--line);
}

.cta-band p { max-width: 480px; margin: 0 auto 30px; }

/* Contact form */
.enquiry-form {
	display: grid;
	gap: 20px;
	margin-top: 20px;
}

.enquiry-form label {
	display: block;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--grey-dim);
	margin-bottom: 8px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
	width: 100%;
	background: var(--charcoal);
	border: 1px solid var(--line);
	color: var(--off-white);
	font-family: var(--sans);
	font-size: 15px;
	padding: 12px 14px;
}

.enquiry-form textarea { min-height: 140px; resize: vertical; }

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
	outline: none;
	border-color: var(--accent);
}

.form-note {
	font-size: 13px;
	color: var(--grey-dim);
	margin-top: 18px;
}

.contact-direct {
	margin-top: 6px;
}

.contact-direct a {
	color: var(--accent);
	border-bottom: 1px solid var(--accent);
}

/* Footer */
.site-footer {
	border-top: 1px solid var(--line);
	padding: 50px 6%;
	text-align: center;
	font-size: 12px;
	letter-spacing: 0.08em;
	color: var(--grey-dim);
}

.site-footer a { color: var(--grey-dim); border-bottom: 1px solid var(--line); }
.site-footer a:hover { color: var(--accent); border-color: var(--accent); }

.site-footer .discretion {
	margin-top: 10px;
	color: var(--grey-dim);
	font-size: 11px;
	letter-spacing: 0.06em;
}

/* Landing page (no nav) */
.landing {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--black);
	padding: 40px 6%;
}

.landing-name {
	font-family: var(--serif);
	font-size: 46px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.landing-title {
	font-size: 13px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 30px;
}

.landing-location {
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--grey-dim);
	margin-bottom: 8px;
}

.landing-line {
	font-family: var(--serif);
	font-size: 18px;
	color: var(--grey);
	max-width: 460px;
	margin: 0 auto 40px;
	line-height: 1.6;
}

.landing .btn-row { justify-content: center; }

/* Responsive */
@media (max-width: 980px) {
	.hero h1 { font-size: 40px; }
	.hero-sub { font-size: 16px; }
	.rooms { grid-template-columns: 1fr; }
	.site-nav { gap: 22px; }
}

@media (max-width: 700px) {
	.site-header { padding: 22px 5%; }
	.site-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--charcoal);
		flex-direction: column;
		gap: 0;
		border-top: 1px solid var(--line);
		border-bottom: 1px solid var(--line);
	}
	.site-nav.is-open { display: flex; }
	.site-nav a {
		padding: 16px 5%;
		border-bottom: 1px solid var(--line);
		width: 100%;
	}
	.nav-toggle { display: block; }
	.hero { min-height: 68vh; }
	.hero h1 { font-size: 32px; }
	.landing-name { font-size: 32px; }
	.section { padding: 16px 6% 60px; }
	.lede { font-size: 18px; }
}
