:root {
	--color-background: #faf8f3;
	--color-surface: #fffdf7;
	--color-sand: #e8dcc8;
	--color-terracotta: #b85c38;
	--color-terracotta-soft: #c8724f;
	--color-olive: #39402b;
	--color-olive-soft: #4d5740;
	--color-espresso: #211c18;
	--color-espresso-soft: #382f28;
	--color-gold-muted: #b99a62;
	--color-peach: #ebd0c0;
	--color-text: #211c18;
	--color-text-soft: #4a423b;
	--color-border: #e0d3c0;
	--color-border-soft: #efe3d3;
	--color-primary: #b85c38;
	--color-primary-soft: #c8724f;
	--color-success: #4a7c59;
	--color-warning: #c2843b;
	--color-danger: #b44534;
	--gray-50: #f7f4ee;
	--gray-100: #e7e0d6;
	--gray-200: #d1c5b6;
	--gray-300: #b6a28b;
	--gray-400: #9a846b;
	--gray-500: #7d6852;
	--gray-600: #5f4e3d;
	--gray-700: #46372a;
	--gray-800: #2f241c;
	--gray-900: #1c1611;
	--font-serif: "Cormorant Garamond", "Cormorant", "Times New Roman", serif;
	--font-sans:
		"Inter", "system-ui", "-apple-system", "BlinkMacSystemFont", "Segoe UI",
		sans-serif;
	--font-display: "Cormorant Garamond", "Cormorant", "Times New Roman", serif;
	--font-size-xs: 0.75rem;
	--font-size-sm: 0.875rem;
	--font-size-base: 1rem;
	--font-size-md: 1.0625rem;
	--font-size-lg: 1.25rem;
	--font-size-xl: 1.5rem;
	--font-size-2xl: 1.875rem;
	--font-size-3xl: 2.25rem;
	--font-size-4xl: 2.75rem;
	--font-size-5xl: 3.25rem;
	--line-height-tight: 1.15;
	--line-height-snug: 1.25;
	--line-height-normal: 1.5;
	--line-height-relaxed: 1.7;
	--space-0: 0;
	--space-1: 0.125rem;
	--space-2: 0.25rem;
	--space-3: 0.375rem;
	--space-4: 0.5rem;
	--space-5: 0.75rem;
	--space-6: 1rem;
	--space-7: 1.25rem;
	--space-8: 1.5rem;
	--space-9: 1.75rem;
	--space-10: 2rem;
	--space-12: 2.5rem;
	--space-14: 3rem;
	--space-16: 4rem;
	--space-20: 5rem;
	--space-24: 6rem;
	--space-28: 7rem;
	--space-32: 8rem;
	--space-36: 9rem;
	--space-40: 10rem;
	--radius-xs: 4px;
	--radius-sm: 6px;
	--radius-md: 10px;
	--radius-lg: 18px;
	--radius-xl: 26px;
	--radius-pill: 999px;
	--radius-arch: 48px;
	--shadow-soft: 0 10px 30px rgba(33, 28, 24, 0.08);
	--shadow-medium: 0 18px 55px rgba(33, 28, 24, 0.16);
	--shadow-subtle: 0 1px 3px rgba(33, 28, 24, 0.12);
	--shadow-focus:
		0 0 0 2px rgba(250, 248, 243, 1), 0 0 0 4px rgba(184, 92, 56, 0.7);
	--transition-fast: 120ms ease-out;
	--transition-normal: 200ms ease-out;
	--transition-slow: 320ms ease-out;
	--layout-max-width: 1120px;
	--layout-gutter: 1.25rem;
	scroll-behavior: smooth;
	color-scheme: light;
}
*,
*::before,
*::after {
	box-sizing: border-box;
}
html,
body {
	margin: 0;
	padding: 0;
}
html {
	font-size: 100%;
}
body {
	min-height: 100vh;
	font-family: var(--font-sans);
	font-size: var(--font-size-base);
	line-height: var(--line-height-normal);
	color: var(--color-text);
	background-color: var(--color-background);
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}
iframe {
	max-width: 100%;
}
input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
}
button {
	border: none;
	background: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
}
ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
	margin: 0;
}
a {
	text-decoration: none;
	color: inherit;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
body.modal-open {
	overflow: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-display);
	font-weight: 500;
	color: var(--color-espresso);
}
h1 {
	font-size: var(--font-size-4xl);
	line-height: var(--line-height-tight);
	letter-spacing: 0.01em;
}
h2 {
	font-size: var(--font-size-3xl);
	line-height: var(--line-height-tight);
}
h3 {
	font-size: var(--font-size-2xl);
	line-height: var(--line-height-snug);
}
h4 {
	font-size: var(--font-size-xl);
}
h5 {
	font-size: var(--font-size-lg);
}
h6 {
	font-size: var(--font-size-md);
	text-transform: uppercase;
	letter-spacing: 0.16em;
}
p {
	font-size: var(--font-size-md);
	line-height: var(--line-height-relaxed);
	color: var(--color-text-soft);
}
a:hover {
	color: var(--color-primary-soft);
}
a[href^="tel"],
a[href^="mailto"] {
	word-break: break-all;
}
body,
button,
input,
textarea,
select {
	letter-spacing: 0.01em;
}
.eyebrow {
	font-family: var(--font-sans);
	font-size: var(--font-size-xs);
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-olive-soft);
}
.lead {
	font-size: var(--font-size-lg);
	line-height: var(--line-height-relaxed);
	color: var(--color-espresso-soft);
}
.container {
	width: 100%;
	max-width: var(--layout-max-width);
	margin: 0 auto;
	padding-left: var(--layout-gutter);
	padding-right: var(--layout-gutter);
}
.section {
	padding: var(--space-16) 0;
}
.section-tight {
	padding: var(--space-12) 0;
}
.section-dark {
	background-color: var(--color-espresso);
	color: #fdf9f2;
}
.section-terracotta {
	background:
		radial-gradient(
			circle at top left,
			rgba(232, 220, 200, 0.7),
			transparent 60%
		),
		#b85c38;
	color: #fefaf4;
}
. {
	background:
		radial-gradient(
			circle at top right,
			rgba(185, 154, 98, 0.3),
			transparent 55%
		),
		#39402b;
	color: #faf8f3;
}
.grid {
	display: grid;
	gap: var(--space-8);
}
.grid-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-auto-fit {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.flex {
	display: flex;
}
.flex-column {
	flex-direction: column;
}
.flex-row {
	flex-direction: row;
}
.flex-wrap {
	flex-wrap: wrap;
}
.items-center {
	align-items: center;
}
.items-start {
	align-items: flex-start;
}
.items-end {
	align-items: flex-end;
}
.justify-between {
	justify-content: space-between;
}
.justify-center {
	justify-content: center;
}
.justify-start {
	justify-content: flex-start;
}
.gap-4 {
	gap: var(--space-4);
}
.gap-6 {
	gap: var(--space-6);
}
.gap-8 {
	gap: var(--space-8);
}
.gap-10 {
	gap: var(--space-10);
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.mt-6 {
	margin-top: var(--space-6);
}
.mt-8 {
	margin-top: var(--space-8);
}
.mt-10 {
	margin-top: var(--space-10);
}
.mb-6 {
	margin-bottom: var(--space-6);
}
.mb-8 {
	margin-bottom: var(--space-8);
}
.mb-10 {
	margin-bottom: var(--space-10);
}
.py-6 {
	padding-top: var(--space-6);
	padding-bottom: var(--space-6);
}
.py-8 {
	padding-top: var(--space-8);
	padding-bottom: var(--space-8);
}
.px-6 {
	padding-left: var(--space-6);
	padding-right: var(--space-6);
}
.badge-list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-4);
}
.badge {
	display: inline-flex;
	align-items: center;
	padding: 0.4rem 0.85rem;
	border-radius: 999px;
	border: 1px solid rgba(57, 64, 43, 0.16);
	background-color: rgba(232, 220, 200, 0.55);
	font-size: var(--font-size-xs);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-olive-soft);
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.8rem 1.7rem;
	border-radius: 999px;
	font-family: var(--font-sans);
	font-size: var(--font-size-sm);
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border: 1px solid transparent;
	transition:
		background-color var(--transition-normal),
		color var(--transition-normal),
		border-color var(--transition-normal),
		transform var(--transition-fast),
		box-shadow var(--transition-fast);
	text-decoration: none;
	white-space: nowrap;
}
.btn-primary {
	background: linear-gradient(135deg, #b85c38, #c8724f);
	color: #fff7f0;
	box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
	background: linear-gradient(135deg, #b24f2f, #c16746);
	transform: translateY(-1px);
	box-shadow: var(--shadow-medium);
}
.btn-primary:active {
	transform: translateY(0);
	box-shadow: var(--shadow-subtle);
}
.btn-ghost {
	background-color: rgba(250, 248, 243, 0.6);
	color: var(--color-espresso-soft);
	border-color: rgba(57, 64, 43, 0.16);
}
.btn-ghost:hover {
	background-color: #f0e4d4;
	border-color: rgba(57, 64, 43, 0.3);
}
.btn-outline {
	background-color: transparent;
	color: var(--color-espresso-soft);
	border-color: rgba(57, 64, 43, 0.4);
}
.btn-outline:hover {
	background-color: rgba(184, 92, 56, 0.05);
	border-color: var(--color-terracotta);
}
.btn-sm {
	padding: 0.55rem 1.2rem;
	font-size: var(--font-size-xs);
}
.btn-full {
	width: 100%;
}
.btn[disabled],
.btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	box-shadow: none;
	transform: none;
}
.btn-icon {
	border-radius: 50%;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.form-field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	margin-bottom: var(--space-6);
}
.form-label {
	font-size: var(--font-size-sm);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-olive-soft);
}
.form-control {
	width: 100%;
	padding: 0.8rem 1rem;
	border-radius: var(--radius-md);
	border: 1px solid var(--color-border);
	background-color: rgba(255, 253, 247, 0.9);
	font-size: var(--font-size-md);
	color: var(--color-text-soft);
	transition:
		border-color var(--transition-normal),
		box-shadow var(--transition-fast),
		background-color var(--transition-fast);
}
.form-control::placeholder {
	color: rgba(74, 66, 59, 0.6);
}
.form-control:focus {
	outline: none;
	border-color: var(--color-terracotta);
	box-shadow: var(--shadow-focus);
	background-color: #fffdf8;
}
.form-control[disabled],
.form-control:disabled {
	background-color: rgba(231, 224, 214, 0.6);
	color: rgba(70, 55, 42, 0.8);
	cursor: not-allowed;
}
.form-control--textarea {
	min-height: 8rem;
	resize: vertical;
}
.form-helper {
	font-size: var(--font-size-xs);
	color: rgba(74, 66, 59, 0.85);
}
.form-error {
	font-size: var(--font-size-xs);
	color: var(--color-danger);
}
input[type="checkbox"],
input[type="radio"] {
	width: 1rem;
	height: 1rem;
}
.card {
	background-color: var(--color-surface);
	border-radius: var(--radius-lg);
	border: 1px solid var(--color-border-soft);
	box-shadow: var(--shadow-soft);
	padding: var(--space-8);
}
.card-ghost {
	background-color: rgba(250, 248, 243, 0.9);
	border-radius: var(--radius-lg);
	border: 1px solid rgba(232, 220, 200, 0.8);
	box-shadow: none;
}
.card-arch {
	border-radius: var(--radius-arch);
	overflow: hidden;
	border: 1px solid var(--color-border-soft);
	background-color: var(--color-surface);
	box-shadow: var(--shadow-soft);
}
.card-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.35rem 0.9rem;
	border-radius: 999px;
	font-size: var(--font-size-xs);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	background-color: rgba(57, 64, 43, 0.08);
	color: var(--color-olive-soft);
}
.hero {
	display: grid;
	gap: var(--space-10);
	align-items: center;
}
.hero-main {
	max-width: 40rem;
}
.hero-badge-row {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-4);
	margin-top: var(--space-6);
}
.hero-visual {
	position: relative;
	background:
		radial-gradient(
			circle at top left,
			rgba(232, 220, 200, 0.95),
			transparent 55%
		),
		#fff9f0;
	border-radius: 40px;
	border: 1px solid rgba(185, 154, 98, 0.35);
	box-shadow: 0 28px 70px rgba(33, 28, 24, 0.22);
	padding: var(--space-8);
	overflow: hidden;
}
.hero-visual-room {
	position: relative;
	border-radius: 30px;
	background: linear-gradient(
		160deg,
		rgba(248, 241, 229, 0.98),
		rgba(232, 220, 200, 0.98)
	);
	min-height: 260px;
	overflow: hidden;
}
.hero-visual-wall {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 12% 0, rgba(185, 154, 98, 0.4), transparent 55%),
		radial-gradient(circle at 85% 0, rgba(184, 92, 56, 0.25), transparent 60%),
		#faf3e6;
}
.hero-visual-arches {
	position: absolute;
	bottom: -12%;
	left: 8%;
	right: 8%;
	height: 68%;
	display: flex;
	justify-content: space-between;
	gap: 1.5rem;
}
.hero-visual-arch {
	flex: 1;
	border-radius: 48px 48px 0 0;
	border: 1px solid rgba(185, 154, 98, 0.55);
	background: linear-gradient(to top, #e8dcc8, #faf5ec);
	box-shadow: 0 16px 40px rgba(33, 28, 24, 0.15);
	position: relative;
	overflow: hidden;
}
.hero-visual-arch::before {
	content: "";
	position: absolute;
	bottom: -35%;
	left: -15%;
	right: -15%;
	height: 75%;
	background:
		radial-gradient(circle at 20% 0, rgba(184, 92, 56, 0.28), transparent 55%),
		radial-gradient(circle at 80% 10%, rgba(57, 64, 43, 0.38), transparent 55%),
		radial-gradient(circle at 50% 100%, rgba(33, 28, 24, 0.7), transparent 60%);
}
.hero-table {
	position: absolute;
	bottom: 7%;
	left: -6%;
	right: -6%;
	height: 40%;
	border-radius: 52% 48% 44% 56%;
	background:
		radial-gradient(circle at 50% 0, rgba(235, 208, 192, 0.7), transparent 65%),
		#b99a62;
	box-shadow: 0 22px 40px rgba(33, 28, 24, 0.45);
}
.hero-table::before {
	content: "";
	position: absolute;
	inset: 12%;
	border-radius: 48% 52% 45% 55%;
	background:
		radial-gradient(circle at 20% 0, rgba(255, 249, 240, 0.6), transparent 65%),
		#f8f1e5;
}
.hero-table-strip {
	position: absolute;
	inset: 32% 18%;
	border-radius: 999px;
	background:
		radial-gradient(circle at 50% 0, rgba(250, 248, 243, 0.9), transparent 65%),
		#ebd0c0;
	box-shadow: 0 8px 18px rgba(33, 28, 24, 0.18);
}
.hero-seating {
	position: absolute;
	bottom: -10%;
	left: 6%;
	right: 6%;
	height: 40%;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
}
.hero-chair {
	width: 23%;
	height: 100%;
	border-radius: 40px;
	background: linear-gradient(160deg, #c8724f, #b85c38);
	box-shadow: 0 18px 36px rgba(33, 28, 24, 0.35);
}
.hero-chair--olive {
	background: linear-gradient(150deg, #4d5740, #39402b);
}
.hero-lights {
	position: absolute;
	top: -4%;
	left: 10%;
	right: 10%;
	height: 35%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.hero-light {
	width: 20%;
	height: 120%;
	border-radius: 999px;
	background: radial-gradient(
		circle at 50% 0,
		rgba(255, 255, 255, 0.95),
		rgba(245, 229, 205, 0.7) 45%,
		rgba(233, 210, 184, 0.2)
	);
	box-shadow: 0 22px 34px rgba(33, 28, 24, 0.35);
	mix-blend-mode: screen;
	opacity: 0.9;
}
.hero-floating-card {
	position: absolute;
	right: 4%;
	top: 10%;
	min-width: 10.5rem;
	background-color: #fffdf7;
	border-radius: 30px;
	border: 1px solid rgba(185, 154, 98, 0.7);
	box-shadow: 0 24px 55px rgba(33, 28, 24, 0.45);
	padding: 0.85rem 1.1rem;
	transform: rotate(-6deg);
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.hero-floating-eyebrow {
	font-size: var(--font-size-xs);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-terracotta);
}
.hero-floating-title {
	font-family: var(--font-display);
	font-size: var(--font-size-md);
	line-height: var(--line-height-snug);
	color: var(--color-espresso-soft);
}
.hero-floating-meta {
	font-size: var(--font-size-xs);
	color: var(--color-text-soft);
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
.pill-nav {
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0.5rem;
	border-radius: 999px;
	background-color: rgba(250, 248, 243, 0.9);
	border: 1px solid rgba(232, 220, 200, 0.9);
}
.pill-nav-item {
	padding: 0.3rem 0.8rem;
	border-radius: 999px;
	font-size: var(--font-size-xs);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(70, 55, 42, 0.9);
	transition:
		background-color var(--transition-normal),
		color var(--transition-normal);
}
.pill-nav-item.is-active {
	background-color: #b85c38;
	color: #fff7f0;
}
.timeline {
	position: relative;
	padding-left: 1.5rem;
}
.timeline::before {
	content: "";
	position: absolute;
	left: 0.5rem;
	top: 0;
	bottom: 0;
	width: 1px;
	background: linear-gradient(
		to bottom,
		rgba(185, 154, 98, 0.6),
		rgba(185, 154, 98, 0)
	);
}
.timeline-step {
	position: relative;
	padding-bottom: var(--space-6);
}
.timeline-dot {
	position: absolute;
	left: -0.1rem;
	top: 0.35rem;
	width: 0.6rem;
	height: 0.6rem;
	border-radius: 50%;
	background-color: #faf8f3;
	border: 2px solid var(--color-gold-muted);
	box-shadow: 0 0 0 4px rgba(185, 154, 98, 0.2);
}
.experience-steps {
	display: grid;
	gap: var(--space-6);
	position: relative;
}
.experience-steps::before {
	content: "";
	position: absolute;
	inset: 10% 8%;
	border-radius: 999px;
	border: 1px dashed rgba(185, 154, 98, 0.7);
	border-left-color: transparent;
	border-right-color: transparent;
	transform: skewX(-8deg);
}
.experience-step {
	position: relative;
	padding: 1.75rem 1.5rem;
	border-radius: 26px;
	background-color: #fffdf7;
	border: 1px solid rgba(232, 220, 200, 0.95);
	box-shadow: var(--shadow-soft);
}
.experience-step-number {
	font-family: var(--font-serif);
	font-size: var(--font-size-sm);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-terracotta);
}
.experience-step-title {
	font-family: var(--font-display);
	font-size: var(--font-size-lg);
	margin-top: 0.3rem;
	color: var(--color-espresso);
}
.experience-step-text {
	margin-top: 0.35rem;
	font-size: var(--font-size-sm);
}
.game-table-illustration {
	position: relative;
	width: 100%;
	max-width: 360px;
	margin: 0 auto;
	padding-top: 2.5rem;
}
.game-table-illustration-base {
	position: relative;
	width: 100%;
	padding-bottom: 60%;
	border-radius: 50%;
	background:
		radial-gradient(
			circle at 50% 0,
			rgba(255, 249, 240, 0.75),
			transparent 60%
		),
		radial-gradient(circle at 50% 100%, rgba(33, 28, 24, 0.9), transparent 75%),
		linear-gradient(145deg, #4d5740, #39402b);
	box-shadow: 0 22px 45px rgba(33, 28, 24, 0.6);
}
.game-table-rim {
	position: absolute;
	inset: 12%;
	border-radius: 50%;
	background:
		radial-gradient(
			circle at 50% 0,
			rgba(250, 248, 243, 0.35),
			transparent 68%
		),
		#39402b;
	border: 4px solid rgba(185, 154, 98, 0.75);
}
.game-table-center {
	position: absolute;
	inset: 26%;
	border-radius: 50%;
	background:
		radial-gradient(circle at 50% 0, rgba(235, 208, 192, 0.4), transparent 70%),
		#436048;
}
.game-table-card {
	position: absolute;
	width: 26%;
	aspect-ratio: 3/4;
	border-radius: 12px;
	background: #fffdf7;
	border: 1px solid rgba(185, 154, 98, 0.8);
	box-shadow: 0 10px 18px rgba(33, 28, 24, 0.4);
}
.game-table-card--1 {
	top: 22%;
	left: 20%;
	transform: rotate(-18deg);
}
.game-table-card--2 {
	top: 26%;
	right: 18%;
	transform: rotate(12deg);
}
.game-table-card--3 {
	bottom: 14%;
	left: 40%;
	transform: rotate(4deg);
}
.game-table-chip {
	position: absolute;
	width: 12%;
	aspect-ratio: 1;
	border-radius: 50%;
	background: conic-gradient(
		from 0deg,
		#b85c38 0 25%,
		#f8f1e5 25% 50%,
		#39402b 50% 75%,
		#e8dcc8 75% 100%
	);
	box-shadow: 0 6px 12px rgba(33, 28, 24, 0.6);
}
.game-table-chip::before {
	content: "";
	position: absolute;
	inset: 22%;
	border-radius: 50%;
	background: #fff5ea;
}
.game-table-chip--1 {
	top: 50%;
	left: 16%;
}
.game-table-chip--2 {
	top: 42%;
	right: 18%;
}
.game-table-chip--3 {
	bottom: 18%;
	left: 24%;
}
.game-table-chip--4 {
	bottom: 22%;
	right: 26%;
}
.game-table-shadow {
	position: absolute;
	left: 10%;
	right: 10%;
	bottom: 0.2rem;
	height: 1.2rem;
	border-radius: 50%;
	background: radial-gradient(
		circle at 50% 50%,
		rgba(33, 28, 24, 0.35),
		transparent 70%
	);
	filter: blur(3px);
}
.faq-notice {
	font-size: var(--font-size-sm);
	line-height: var(--line-height-relaxed);
	padding: 1rem 1.25rem;
	border-radius: var(--radius-lg);
	background-color: rgba(232, 220, 200, 0.9);
	border: 1px solid rgba(185, 154, 98, 0.7);
	color: var(--color-espresso-soft);
}
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-auto-rows: 8rem;
	gap: 0.9rem;
}
.gallery-item {
	position: relative;
	border-radius: 32px;
	border: 1px solid rgba(232, 220, 200, 0.85);
	overflow: hidden;
	background-color: #ebd0c0;
	box-shadow: var(--shadow-soft);
}
.gallery-item--wide {
	grid-column: span 8;
}
.gallery-item--medium {
	grid-column: span 6;
}
.gallery-item--tall {
	grid-row: span 2;
	grid-column: span 4;
}
.gallery-item--arch::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 48px 48px 18px 18px;
	box-shadow: inset 0 0 0 1px rgba(185, 154, 98, 0.65);
	pointer-events: none;
}
.arch-panel {
	border-radius: 48px 48px 20px 20px;
	border: 1px solid rgba(232, 220, 200, 0.95);
	background: radial-gradient(
		circle at top,
		rgba(248, 241, 229, 1),
		rgba(232, 220, 200, 0.95)
	);
	padding: var(--space-6);
	box-shadow: var(--shadow-soft);
}
.arch-panel-terracotta {
	background: radial-gradient(
		circle at top,
		rgba(248, 230, 216, 1),
		rgba(184, 92, 56, 0.85)
	);
	color: #fff8f2;
}
.arch-panel-olive {
	background: radial-gradient(
		circle at top,
		rgba(240, 236, 224, 1),
		rgba(57, 64, 43, 0.92)
	);
	color: #faf8f3;
}
.footer {
	padding: var(--space-12) 0 var(--space-8);
	background: #211c18;
	color: #f7f2ea;
}
.footer a {
	color: rgba(245, 236, 222, 0.92);
	font-size: var(--font-size-sm);
}
.footer a:hover {
	color: #ffffff;
}
.footer-heading {
	font-size: var(--font-size-sm);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
	color: rgba(244, 232, 214, 0.95);
}
.footer-nav {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-10);
}
.footer-column {
	min-width: 140px;
}
.footer-bottom {
	margin-top: var(--space-8);
	border-top: 1px solid rgba(244, 232, 214, 0.15);
	padding-top: var(--space-6);
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-4);
	justify-content: space-between;
	align-items: center;
}
.footer-legal {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-4);
	font-size: var(--font-size-xs);
	color: rgba(244, 232, 214, 0.75);
}
.footer-brand {
	font-family: var(--font-display);
	font-size: var(--font-size-xl);
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.tagline {
	font-size: var(--font-size-sm);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-olive-soft);
}
.chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.chip {
	padding: 0.35rem 0.85rem;
	border-radius: 999px;
	border: 1px solid rgba(185, 154, 98, 0.6);
	background-color: rgba(250, 248, 243, 0.9);
	font-size: var(--font-size-xs);
	color: var(--color-text-soft);
}
.no-scrollbar {
	scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
	display: none;
}
*:focus-visible {
	outline: none;
	box-shadow: var(--shadow-focus);
}
*:focus:not(:focus-visible) {
	outline: none;
	box-shadow: none;
}
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}
}
@media (max-width: 959px) {
	.hero {
		grid-template-columns: 1fr;
	}
	.hero-main {
		order: 2;
	}
	.hero-visual {
		order: 1;
	}
	.grid-2 {
		grid-template-columns: 1fr;
	}
	.grid-3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.section {
		padding: var(--space-12) 0;
	}
	.section-tight {
		padding: var(--space-10) 0;
	}
	.experience-steps::before {
		display: none;
	}
	.footer-nav {
		gap: var(--space-6);
	}
}
@media (max-width: 639px) {
	h1 {
		font-size: var(--font-size-3xl);
	}
	h2 {
		font-size: var(--font-size-2xl);
	}
	h3 {
		font-size: var(--font-size-xl);
	}
	.hero-visual {
		border-radius: 30px;
		padding: var(--space-6);
	}
	.hero-floating-card {
		top: auto;
		bottom: 4%;
		right: 6%;
		transform: rotate(-4deg);
	}
	.grid-3 {
		grid-template-columns: 1fr;
	}
	.gallery-grid {
		grid-template-columns: repeat(6, 1fr);
		grid-auto-rows: 7rem;
	}
	.gallery-item--wide {
		grid-column: span 6;
	}
	.gallery-item--medium {
		grid-column: span 6;
	}
	.gallery-item--tall {
		grid-column: span 3;
	}
	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
	.container {
		padding-left: 1rem;
		padding-right: 1rem;
	}
}
