/* ============================================================
   INNEROOTS: Breathe & Eat — Design System
   ============================================================ */

/* --- Google Fonts --- */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap");

/* --- CSS Custom Properties --- */
:root {
	/* Brand Colors */
	--navy: #0d1b2a;
	--navy-light: #1b2d44;
	--navy-medium: #142236;
	--gold: #c9a84c;
	--gold-light: #d4b96a;
	--gold-muted: #a68a3e;
	--gold-glow: rgba(201, 168, 76, 0.15);
	--cream: #faf8f0;
	--cream-dim: #f0ede0;
	--white: #ffffff;
	--text-body: #d0cfc8;
	--text-muted: #8a8880;
	--overlay: rgba(13, 27, 42, 0.7);
	--overlay-deep: rgba(13, 27, 42, 0.85);

	/* Typography */
	--font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
	--font-body:
		"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	/* Spacing */
	--section-pad-y: clamp(4rem, 8vw, 7rem);
	--section-pad-x: clamp(1.25rem, 5vw, 6rem);
	--container-max: 1200px;

	/* Transitions */
	--ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
	--ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: var(--font-body);
	color: var(--cream);
	background-color: var(--navy);
	line-height: 1.7;
	overflow-x: hidden;
}

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

a {
	color: var(--gold);
	text-decoration: none;
	transition: color 0.3s var(--ease-out);
}

a:hover {
	color: var(--gold-light);
}

/* --- Typography --- */
h1, h2, h3, h4 {
	font-family: var(--font-heading);
	font-weight: 600;
	line-height: 1.2;
	color: var(--cream);
}

h1 {
	font-size: clamp(2.5rem, 6vw, 4.5rem);
}
h2 {
	font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
	font-size: clamp(1.25rem, 2.5vw, 1.6rem);
}

p {
	font-weight: 300;
	color: var(--text-body);
	max-width: 65ch;
}

.section-label {
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 0.75rem;
}

.gold-line {
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, var(--gold), var(--gold-muted));
	margin: 1.25rem 0 1.75rem;
	border: none;
}

.gold-line--center {
	margin-left: auto;
	margin-right: auto;
}

/* --- Buttons --- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2.25rem;
	font-family: var(--font-body);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border: none;
	border-radius: 0;
	cursor: pointer;
	transition: all 0.4s var(--ease-smooth);
	text-decoration: none;
}

.btn--gold {
	background: linear-gradient(135deg, var(--gold), var(--gold-muted));
	color: var(--navy);
}

.btn--gold:hover {
	background: linear-gradient(135deg, var(--gold-light), var(--gold));
	color: var(--navy);
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn--outline {
	background: transparent;
	color: var(--gold);
	border: 1px solid var(--gold);
}

.btn--outline:hover {
	background: var(--gold);
	color: var(--navy);
	transform: translateY(-2px);
}

/* --- Container --- */
.container {
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--section-pad-x);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 1.25rem 0;
	transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
	background: rgba(13, 27, 42, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: 0.75rem 0;
	box-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.navbar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.navbar__logo img {
	height: 50px;
	width: auto;
	transition: height 0.4s var(--ease-out);
}

.navbar.scrolled .navbar__logo img {
	height: 40px;
}

.navbar__links {
	display: flex;
	align-items: center;
	gap: 2rem;
	list-style: none;
}

.navbar__links a {
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--cream);
	position: relative;
	padding: 0.25rem 0;
}

.navbar__links a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--gold);
	transition: width 0.3s var(--ease-out);
}

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

.navbar__links a:hover::after {
	width: 100%;
}

/* Hamburger */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	z-index: 1001;
	background: none;
	border: none;
	padding: 0.5rem;
}

.hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--cream);
	transition: all 0.3s var(--ease-out);
	transform-origin: center;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
@media (max-width: 768px) {
	.hamburger {
		display: flex;
	}

	.navbar__links {
		position: fixed;
		top: 0;
		right: -100%;
		width: 75%;
		max-width: 320px;
		height: 100vh;
		background: var(--navy);
		flex-direction: column;
		justify-content: center;
		gap: 2rem;
		padding: 2rem;
		transition: right 0.4s var(--ease-smooth);
		box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
	}

	.navbar__links.open {
		right: 0;
	}

	.navbar__links a {
		font-size: 1rem;
	}

	.mobile-overlay {
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.5);
		z-index: 999;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.3s var(--ease-out);
	}

	.mobile-overlay.active {
		opacity: 1;
		pointer-events: all;
	}
}

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

.hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.05);
	transition: transform 10s linear;
}

.hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(13, 27, 42, 0.5) 0%,
		rgba(13, 27, 42, 0.65) 40%,
		rgba(13, 27, 42, 0.85) 100%
	);
}

.hero__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	padding: 0 1.5rem;
}

.hero__logo {
	width: clamp(140px, 25vw, 220px);
	margin-bottom: 0.5rem;
	animation: fadeInDown 1s var(--ease-smooth) both;
}

.hero__tagline {
	font-family: var(--font-heading);
	font-size: clamp(1rem, 2.5vw, 1.4rem);
	font-weight: 400;
	font-style: italic;
	color: var(--gold-light);
	letter-spacing: 0.08em;
	animation: fadeInUp 1s 0.3s var(--ease-smooth) both;
}

.hero__cta {
	animation: fadeInUp 1s 0.6s var(--ease-smooth) both;
	margin-top: 0.5rem;
}

.hero__scroll-hint {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	animation: fadeInUp 1s 1s var(--ease-smooth) both;
}

.hero__scroll-hint span {
	font-size: 0.7rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--text-muted);
}

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

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
	padding: var(--section-pad-y) 0;
	background: var(--navy);
}

.about__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

.about__image-wrapper {
	position: relative;
	overflow: hidden;
}

.about__image-wrapper::before {
	content: "";
	position: absolute;
	top: -10px;
	left: -10px;
	right: 10px;
	bottom: 10px;
	border: 1px solid var(--gold-muted);
	opacity: 0.4;
	z-index: 1;
	pointer-events: none;
}

.about__image-wrapper img {
	width: 100%;
	max-width: 450px;
	aspect-ratio: 3/4;
	object-fit: cover;
	object-position: top center;
	filter: brightness(0.95);
}

.about__text {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.about__text h2 {
	margin-bottom: 0.25rem;
}

.about__text p {
	line-height: 1.85;
}

.about__text blockquote {
	font-family: var(--font-heading);
	font-style: italic;
	font-size: 1.15rem;
	color: var(--gold-light);
	border-left: 2px solid var(--gold);
	padding-left: 1.25rem;
	margin-top: 0.75rem;
}

@media (min-width: 768px) {
	.about__grid {
		grid-template-columns: 5fr 6fr;
		gap: 4rem;
	}
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
	padding: var(--section-pad-y) 0;
	background: var(--navy-medium);
	position: relative;
}

.services__header {
	text-align: center;
	margin-bottom: 3.5rem;
}

.services__header p {
	margin: 0 auto;
}

.services__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

.service-card {
	background: linear-gradient(
		145deg,
		rgba(27, 45, 68, 0.6),
		rgba(13, 27, 42, 0.8)
	);
	border: 1px solid rgba(201, 168, 76, 0.12);
	padding: 2.5rem 2rem;
	position: relative;
	overflow: hidden;
	transition: all 0.4s var(--ease-smooth);
}

.service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
	opacity: 0;
	transition: opacity 0.4s var(--ease-out);
}

.service-card:hover {
	border-color: rgba(201, 168, 76, 0.3);
	transform: translateY(-4px);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
	opacity: 1;
}

.service-card__icon {
	color: var(--gold);
	margin-bottom: 1.25rem;
	display: block;
}

.service-card h3 {
	font-family: var(--font-heading);
	color: var(--gold);
	margin-bottom: 0.75rem;
}

.service-card p {
	font-size: 0.925rem;
	margin-bottom: 1.25rem;
}

.service-card ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.service-card ul li {
	font-size: 0.875rem;
	color: var(--text-body);
	padding-left: 1.25rem;
	position: relative;
}

.service-card ul li::before {
	content: "—";
	position: absolute;
	left: 0;
	color: var(--gold-muted);
}

@media (min-width: 768px) {
	.services__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery {
	padding: var(--section-pad-y) 0;
	background: var(--navy);
}

.gallery__header {
	text-align: center;
	margin-bottom: 3rem;
}

.gallery__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
}

.gallery__item {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	aspect-ratio: 1;
}

.gallery__item:nth-child(1),
.gallery__item:nth-child(6) {
	grid-column: span 2;
	aspect-ratio: 16/9;
}

.gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ease-smooth), filter 0.4s var(--ease-out);
}

.gallery__item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(13, 27, 42, 0.7), transparent 60%);
	opacity: 0;
	transition: opacity 0.4s var(--ease-out);
}

.gallery__item:hover img {
	transform: scale(1.08);
	filter: brightness(0.85);
}

.gallery__item:hover::after {
	opacity: 1;
}

.gallery__item-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.25rem;
	z-index: 1;
	transform: translateY(10px);
	opacity: 0;
	transition: all 0.4s var(--ease-smooth);
}

.gallery__item:hover .gallery__item-caption {
	transform: translateY(0);
	opacity: 1;
}

.gallery__item-caption span {
	font-family: var(--font-heading);
	font-size: 0.95rem;
	color: var(--cream);
	font-style: italic;
}

@media (min-width: 768px) {
	.gallery__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
	}

	.gallery__item:nth-child(1) {
		grid-column: span 2;
		grid-row: span 2;
		aspect-ratio: 1; /* Fixes gap on right side */
	}

	.gallery__item:nth-child(6) {
		grid-column: auto;
		aspect-ratio: 1; /* Restore normal 3x3 layout for desktop */
	}

	.gallery__item {
		aspect-ratio: 1;
	}
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials {
	padding: var(--section-pad-y) 0;
	background: var(--navy-medium);
	position: relative;
}

.testimonials__header {
	text-align: center;
	margin-bottom: 3.5rem;
}

.testimonials__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

.testimonial-card {
	background: linear-gradient(
		145deg,
		rgba(27, 45, 68, 0.4),
		rgba(13, 27, 42, 0.6)
	);
	border: 1px solid rgba(201, 168, 76, 0.12);
	padding: 2.5rem 2rem;
	position: relative;
	text-align: center;
	transition: all 0.4s var(--ease-smooth);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.testimonial-card:hover {
	border-color: rgba(201, 168, 76, 0.3);
	transform: translateY(-4px);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.testimonial-card__icon {
	color: var(--gold);
	opacity: 0.3;
	margin-bottom: 1.25rem;
}

.testimonial-card__quote {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-style: italic;
	color: var(--cream);
	margin-bottom: 1.5rem;
	line-height: 1.7;
	flex-grow: 1;
}

.testimonial-card__author {
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
}

@media (min-width: 768px) {
	.testimonials__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}
}

/* ============================================================
   BOOKING & CONTACT SECTION
   ============================================================ */
.booking {
	padding: var(--section-pad-y) 0;
	background: var(--navy);
	position: relative;
}

.booking__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

.booking__info {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.booking__info h2 {
	margin-bottom: 0.25rem;
}

.booking__channels {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 0.5rem;
}

.channel-link {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	background: rgba(201, 168, 76, 0.06);
	border: 1px solid rgba(201, 168, 76, 0.15);
	transition: all 0.3s var(--ease-out);
	text-decoration: none;
}

.channel-link:hover {
	background: rgba(201, 168, 76, 0.12);
	border-color: rgba(201, 168, 76, 0.35);
	transform: translateX(4px);
}

.channel-link__icon {
	font-size: 1.5rem;
	flex-shrink: 0;
}

.channel-link__text {
	display: flex;
	flex-direction: column;
}

.channel-link__label {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gold);
}

.channel-link__value {
	font-size: 0.95rem;
	color: var(--cream);
}

/* Contact Form */
.booking__form-wrapper {
	background: linear-gradient(
		145deg,
		rgba(27, 45, 68, 0.4),
		rgba(13, 27, 42, 0.6)
	);
	border: 1px solid rgba(201, 168, 76, 0.12);
	padding: 2.5rem 2rem;
}

.booking__form-wrapper h3 {
	font-family: var(--font-heading);
	color: var(--gold);
	margin-bottom: 1.5rem;
}

.form-group {
	margin-bottom: 1.25rem;
}

.form-group label {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 0.85rem 1rem;
	font-family: var(--font-body);
	font-size: 0.925rem;
	color: var(--cream);
	background: rgba(13, 27, 42, 0.7);
	border: 1px solid rgba(201, 168, 76, 0.15);
	outline: none;
	transition:
		border-color 0.3s var(--ease-out),
		box-shadow 0.3s var(--ease-out);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	border-color: var(--gold);
	box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group textarea {
	min-height: 120px;
	resize: vertical;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 480px) {
	.form-row {
		grid-template-columns: 1fr 1fr;
	}
}

.form-submit {
	margin-top: 0.5rem;
}

.form-submit .btn {
	width: 100%;
	justify-content: center;
}

@media (min-width: 768px) {
	.booking__grid {
		grid-template-columns: 5fr 7fr;
		gap: 4rem;
		align-items: start;
	}
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
	padding: 3rem 0 2rem;
	background: var(--navy);
	border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.75rem;
	text-align: center;
}

.footer__logo img {
	height: 60px;
	width: auto;
	opacity: 0.7;
	transition: opacity 0.3s var(--ease-out);
}

.footer__logo:hover img {
	opacity: 1;
}

.footer__nav {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
}

.footer__nav a {
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text-muted);
}

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

.footer__socials {
	display: flex;
	gap: 1rem;
}

.footer__socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(201, 168, 76, 0.2);
	color: var(--text-muted);
	font-size: 1.1rem;
	transition: all 0.3s var(--ease-out);
}

.footer__socials a:hover {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--navy);
}

.footer__copy {
	font-size: 0.75rem;
	color: var(--text-muted);
	letter-spacing: 0.05em;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.8s var(--ease-smooth),
		transform 0.8s var(--ease-smooth);
}

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

.reveal-left {
	opacity: 0;
	transform: translateX(-40px);
	transition:
		opacity 0.8s var(--ease-smooth),
		transform 0.8s var(--ease-smooth);
}

.reveal-left.revealed {
	opacity: 1;
	transform: translateX(0);
}

.reveal-right {
	opacity: 0;
	transform: translateX(40px);
	transition:
		opacity 0.8s var(--ease-smooth),
		transform 0.8s var(--ease-smooth);
}

.reveal-right.revealed {
	opacity: 1;
	transform: translateX(0);
}

/* Staggered children */
.stagger-children .reveal:nth-child(1) {
	transition-delay: 0s;
}
.stagger-children .reveal:nth-child(2) {
	transition-delay: 0.1s;
}
.stagger-children .reveal:nth-child(3) {
	transition-delay: 0.2s;
}
.stagger-children .reveal:nth-child(4) {
	transition-delay: 0.15s;
}
.stagger-children .reveal:nth-child(5) {
	transition-delay: 0.2s;
}
.stagger-children .reveal:nth-child(6) {
	transition-delay: 0.25s;
}

/* --- Keyframes --- */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes scrollPulse {
	0%, 100% {
		opacity: 1;
		transform: scaleY(1);
	}
	50% {
		opacity: 0.4;
		transform: scaleY(0.6);
	}
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 2000;
	background: rgba(0, 0, 0, 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s var(--ease-out);
	cursor: zoom-out;
}

.lightbox.active {
	opacity: 1;
	pointer-events: all;
}

.lightbox img {
	max-width: 90vw;
	max-height: 85vh;
	object-fit: contain;
	transform: scale(0.9);
	transition: transform 0.4s var(--ease-smooth);
}

.lightbox.active img {
	transform: scale(1);
}

.lightbox__close {
	position: absolute;
	top: 1.25rem;
	right: 1.5rem;
	background: none;
	border: none;
	color: var(--cream);
	font-size: 2rem;
	cursor: pointer;
	opacity: 0.6;
	transition: opacity 0.3s;
	line-height: 1;
}

.lightbox__close:hover {
	opacity: 1;
}

/* ============================================================
   UTILITIES & MISC
   ============================================================ */
.text-center {
	text-align: center;
}
.text-gold {
	color: var(--gold);
}

/* Selection */
::selection {
	background: var(--gold);
	color: var(--navy);
}
