/* =============================================================================
   1511 Ocean Terrace — Theme styles
   Tokens derived from Figma file: 81DBVdmbPrg1xsNAeh0guK
   Fonts: Neue Montreal (display), Inter (UI labels)
   Container max: 1600px @ 60px side padding
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
	--ot-color-black: #000;
	--ot-color-near-black: #111;
	--ot-color-white: #fff;
	--ot-color-text: #111;
	--ot-color-muted: rgba(0, 0, 0, 0.6);
	--ot-color-muted-strong: rgba(0, 0, 0, 0.8);
	--ot-color-border: rgba(0, 0, 0, 0.1);
	--ot-color-divider: #e6e6e6;
	--ot-color-surface: #fafafa;

	--ot-font-display: "Neue Montreal", "Neue Haas Grotesk Display", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
	--ot-font-ui: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

	/* Type scale */
	--ot-fs-hero: clamp(40px, 5.2vw, 80px);
	--ot-fs-h1: clamp(36px, 4vw, 60px);
	--ot-fs-h2: clamp(28px, 3vw, 48px);
	--ot-fs-h3: clamp(20px, 2vw, 24px);
	--ot-fs-lead: clamp(16px, 1.2vw, 20px);
	--ot-fs-body: 16px;
	--ot-fs-small: 14px;

	/* Spacing scale */
	--ot-space-3xs: 4px;
	--ot-space-2xs: 8px;
	--ot-space-xs: 12px;
	--ot-space-sm: 16px;
	--ot-space-md: 24px;
	--ot-space-lg: 40px;
	--ot-space-xl: 64px;
	--ot-space-2xl: 96px;
	--ot-space-3xl: 120px;

	/* Layout */
	--ot-container: 1600px;
	--ot-container-padding-x: clamp(20px, 4vw, 60px);
	--ot-section-py: clamp(64px, 8vw, 120px);

	/* Motion */
	--ot-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
	--ot-transition-fast: 180ms var(--ot-ease);
	--ot-transition: 280ms var(--ot-ease);

	/* Header */
	--ot-header-height: 88px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--ot-font-display);
	font-size: var(--ot-fs-body);
	line-height: 1.6;
	color: var(--ot-color-text);
	background: var(--ot-color-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
a:hover, a:focus-visible { text-decoration: none; }
:focus-visible { outline: 2px solid var(--ot-color-black); outline-offset: 3px; }
ul, ol { padding: 0; margin: 0; list-style: none; }
p { margin: 0 0 1em; }

.ot-sr-only {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0);
	white-space: nowrap; border: 0;
}
.ot-skip-link {
	position: absolute; top: -100px; left: 0;
	background: var(--ot-color-near-black); color: #fff;
	padding: 12px 16px; z-index: 100;
	transition: top var(--ot-transition);
}
.ot-skip-link:focus { top: 0; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---------- Container / section / typography ---------- */
.ot-container {
	max-width: var(--ot-container);
	margin: 0 auto;
	padding-inline: var(--ot-container-padding-x);
}
.ot-section {
	padding-block: var(--ot-section-py);
}
.ot-h1 {
	font-family: var(--ot-font-display);
	font-size: var(--ot-fs-h1);
	line-height: 1.1;
	font-weight: 400;
	letter-spacing: -0.01em;
	margin: 0 0 var(--ot-space-md);
	color: var(--ot-color-text);
}
.ot-h2 {
	font-family: var(--ot-font-display);
	font-size: var(--ot-fs-h2);
	line-height: 1.15;
	font-weight: 400;
	letter-spacing: -0.01em;
	margin: 0 0 var(--ot-space-md);
}
.ot-eyebrow {
	font-family: var(--ot-font-display);
	font-size: var(--ot-fs-h3);
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin: 0 0 var(--ot-space-sm);
}
.ot-lead {
	font-size: var(--ot-fs-lead);
	line-height: 1.6;
	color: var(--ot-color-muted-strong);
}
.ot-prose p { margin-bottom: 1em; }
.ot-prose p:last-child { margin-bottom: 0; }

/* ---------- Buttons ---------- */
.ot-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--ot-space-2xs);
	font-family: var(--ot-font-ui);
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.01em;
	padding: 14px 24px;
	text-align: center;
	border: 1px solid transparent;
	transition: background var(--ot-transition-fast), color var(--ot-transition-fast), border-color var(--ot-transition-fast);
	white-space: nowrap;
	cursor: pointer;
}
.ot-btn--dark {
	background: var(--ot-color-near-black);
	color: var(--ot-color-white);
}
.ot-btn--dark:hover,
.ot-btn--dark:focus-visible {
	background: #000;
	color: var(--ot-color-white);
}
.ot-btn--light {
	background: var(--ot-color-white);
	color: var(--ot-color-near-black);
	border-color: var(--ot-color-white);
}
.ot-btn--light:hover,
.ot-btn--light:focus-visible {
	background: rgba(255, 255, 255, 0.85);
}
.ot-btn--lg {
	font-size: 20px;
	padding: 24px 64px;
	min-height: 72px;
}
.ot-btn--full { width: 100%; }

/* ---------- Header ---------- */
/* Default state: light theme (works on every page except the hero overlay). */
.ot-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.96);
	color: var(--ot-color-near-black);
	box-shadow: 0 1px 0 var(--ot-color-border);
	backdrop-filter: saturate(180%) blur(10px);
	transition: background var(--ot-transition), color var(--ot-transition), box-shadow var(--ot-transition);
}
/* Pages that begin with a hero override the default to overlay the hero image. */
body.has-hero .ot-header {
	background: transparent;
	color: var(--ot-color-white);
	box-shadow: none;
	backdrop-filter: none;
}
/* After scrolling past the hero, return to the light theme. */
body.has-hero .ot-header.is-scrolled,
.ot-header.is-light {
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: saturate(180%) blur(10px);
	color: var(--ot-color-near-black);
	box-shadow: 0 1px 0 var(--ot-color-border);
}
.ot-header__inner {
	max-width: var(--ot-container);
	margin: 0 auto;
	padding: 24px var(--ot-container-padding-x);
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: var(--ot-space-lg);
	min-height: var(--ot-header-height);
}
.ot-header__logo { display: inline-flex; align-items: center; }
.ot-header__logo img { max-height: 36px; width: auto; }
.ot-header__logo-text { font-size: 24px; font-family: var(--ot-font-display); }
.ot-header__nav { justify-self: center; }
.ot-header__nav-list {
	display: flex;
	gap: 32px;
	align-items: center;
	font-size: 16px;
}
.ot-header__nav-list a {
	position: relative;
	padding-block: 4px;
	transition: opacity var(--ot-transition-fast);
}
.ot-header__nav-list a:hover { opacity: 0.7; }
.ot-header__cta { justify-self: end; }
.ot-header__menu-toggle {
	display: none;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
}
.ot-header__menu-toggle-line {
	display: block;
	width: 24px;
	height: 1.5px;
	background: currentColor;
	transition: transform var(--ot-transition-fast), opacity var(--ot-transition-fast);
}
.ot-header__menu-toggle[aria-expanded="true"] .ot-header__menu-toggle-line:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.ot-header__menu-toggle[aria-expanded="true"] .ot-header__menu-toggle-line:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

@media (max-width: 900px) {
	.ot-header__nav, .ot-header__cta { display: none; }
	.ot-header__menu-toggle { display: inline-flex; justify-self: end; }
	.ot-header__inner { grid-template-columns: auto 1fr; }
}

/* ---------- Mobile drawer ---------- */
/* Always rendered so the slide-in transition can animate.
   Closed state uses the `inert` attribute (browser blocks focus + clicks)
   plus a transform to push it off-screen. The .is-open class drives the open state. */
.ot-drawer {
	position: fixed;
	inset: 0;
	z-index: 100;
	background: var(--ot-color-white);
	color: var(--ot-color-text);
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	visibility: hidden;
	transition: transform var(--ot-transition), visibility 0s linear var(--ot-transition);
}
.ot-drawer.is-open {
	transform: translateX(0);
	visibility: visible;
	transition: transform var(--ot-transition), visibility 0s linear 0s;
}
.ot-drawer__inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 24px var(--ot-container-padding-x);
}
.ot-drawer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: var(--ot-space-xl);
}
.ot-drawer__close {
	font-size: 28px;
	line-height: 1;
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.ot-drawer__nav-list { display: flex; flex-direction: column; gap: var(--ot-space-md); font-size: 28px; }
.ot-drawer__nav-list a { display: block; padding-block: 8px; }
.ot-drawer__footer {
	margin-top: auto;
	padding-block: var(--ot-space-lg);
	border-top: 1px solid var(--ot-color-divider);
	display: flex;
	flex-direction: column;
	gap: var(--ot-space-sm);
}
.ot-drawer__disclaimer { font-size: 13px; color: var(--ot-color-muted); margin: 0; line-height: 1.5; }
.ot-drawer__address { font-size: 13px; color: var(--ot-color-muted); margin: 0; }

/* ---------- Hero ---------- */
.ot-hero {
	position: relative;
	min-height: clamp(560px, 90vh, 950px);
	color: var(--ot-color-white);
	overflow: hidden;
	margin-top: calc(-1 * var(--ot-header-height));
	padding-top: var(--ot-header-height);
}
.ot-hero__bg { position: absolute; inset: 0; }
.ot-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.ot-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(17,17,17,0) 47%, rgba(17,17,17,0.8) 100%);
	pointer-events: none;
}
.ot-hero__inner {
	position: relative;
	max-width: var(--ot-container);
	margin: 0 auto;
	min-height: inherit;
	padding: var(--ot-space-3xl) var(--ot-container-padding-x) var(--ot-space-xl);
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-rows: auto 1fr auto;
	grid-template-areas:
		". price"
		"content content"
		"content cta";
	align-content: end;
	gap: var(--ot-space-lg);
}
.ot-hero__price {
	grid-area: price;
	align-self: start;
	text-align: right;
}
.ot-hero__price-label { font-size: 20px; letter-spacing: 0.01em; margin: 0 0 8px; }
.ot-hero__price-value { font-size: clamp(32px, 3.4vw, 48px); margin: 0; line-height: 1; letter-spacing: -0.01em; }
.ot-hero__content { grid-area: content; align-self: end; max-width: 876px; }
.ot-hero__eyebrow {
	font-size: clamp(16px, 1.6vw, 24px);
	font-weight: 500;
	margin: 0 0 var(--ot-space-md);
	letter-spacing: 0.02em;
}
.ot-hero__headline {
	font-family: var(--ot-font-display);
	font-size: var(--ot-fs-hero);
	line-height: 1.05;
	font-weight: 400;
	letter-spacing: -0.015em;
	margin: 0;
}
.ot-hero__cta { grid-area: cta; align-self: end; justify-self: end; }

@media (max-width: 900px) {
	.ot-hero__inner {
		grid-template-columns: 1fr;
		grid-template-areas:
			"price"
			"content"
			"cta";
		padding-block: var(--ot-space-xl);
	}
	.ot-hero__price { text-align: left; }
	.ot-hero__cta { justify-self: stretch; }
	.ot-hero__cta .ot-btn { width: 100%; }
}

/* ---------- Intro ---------- */
.ot-intro__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(40px, 6vw, 120px);
	align-items: start;
}
.ot-intro__heading { margin-bottom: var(--ot-space-lg); }
.ot-intro__body { color: var(--ot-color-muted-strong); font-size: var(--ot-fs-lead); line-height: 1.7; }
.ot-intro__media img { width: 100%; }
@media (max-width: 900px) {
	.ot-intro__grid { grid-template-columns: 1fr; }
}

/* ---------- Feature grid ---------- */
.ot-features { padding-block: clamp(40px, 6vw, 80px); }
.ot-features__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--ot-space-md);
}
.ot-features__card {
	position: relative;
	overflow: hidden;
	aspect-ratio: 3/4;
	background: var(--ot-color-surface);
	color: var(--ot-color-white);
}
.ot-features__media { position: absolute; inset: 0; }
.ot-features__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform var(--ot-transition);
}
.ot-features__card:hover .ot-features__media img { transform: scale(1.04); }
.ot-features__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
	pointer-events: none;
}
.ot-features__num {
	position: absolute;
	top: var(--ot-space-md);
	left: var(--ot-space-md);
	font-size: 14px;
	letter-spacing: 0.04em;
	font-feature-settings: "tnum" on, "lnum" on;
}
.ot-features__label {
	position: absolute;
	left: var(--ot-space-md);
	right: var(--ot-space-md);
	bottom: var(--ot-space-md);
	font-size: clamp(18px, 1.6vw, 24px);
	line-height: 1.2;
	margin: 0;
}
@media (max-width: 1100px) { .ot-features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .ot-features__grid { grid-template-columns: 1fr; } }

/* ---------- Residences ---------- */
.ot-residences { background: var(--ot-color-white); }
.ot-residences__header { margin-bottom: var(--ot-space-2xl); max-width: 720px; }
.ot-residences__heading { margin-bottom: var(--ot-space-sm); }
.ot-residences__intro { color: var(--ot-color-muted-strong); font-size: var(--ot-fs-body); }
.ot-residences__layout {
	display: grid;
	grid-template-columns: 649px 1px 1fr;
	gap: 64px;
	align-items: start;
}
.ot-residences__layout::before {
	content: "";
	grid-column: 2;
	align-self: stretch;
	background: var(--ot-color-divider);
	min-height: 100%;
}
.ot-residences__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.ot-residences__item {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	width: 100%;
	padding: 24px;
	border: 1px solid var(--ot-color-border);
	color: var(--ot-color-muted);
	text-align: left;
	transition: background var(--ot-transition-fast), color var(--ot-transition-fast), border-color var(--ot-transition-fast);
}
.ot-residences__item:hover { border-color: rgba(0,0,0,0.3); color: var(--ot-color-text); }
.ot-residences__item[aria-selected="true"] {
	background: var(--ot-color-black);
	color: var(--ot-color-white);
	border-color: var(--ot-color-black);
}
.ot-residences__item-name { font-size: 20px; letter-spacing: 0.02em; }
.ot-residences__item-price { font-size: 16px; letter-spacing: 0.02em; }
.ot-residences__panel { display: flex; flex-direction: column; gap: var(--ot-space-md); }
.ot-residences__panel[hidden] { display: none; }
.ot-residences__panel-header { display: flex; justify-content: space-between; align-items: flex-start; }
.ot-residences__panel-title { font-size: 20px; font-weight: 400; margin: 0; letter-spacing: 0.02em; }
.ot-residences__panel-floor { color: var(--ot-color-muted); margin: 4px 0 0; font-family: var(--ot-font-ui); font-size: 16px; }
.ot-residences__panel-layout { color: var(--ot-color-muted); font-family: var(--ot-font-ui); margin: 0; font-size: 16px; }
.ot-residences__panel-plan {
	border-top: 1px solid var(--ot-color-divider);
	padding-top: var(--ot-space-md);
	margin: 0;
}
.ot-residences__panel-plan img { width: 100%; max-width: 600px; }
.ot-residences__panel-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--ot-space-md);
	margin: 0;
	padding-top: var(--ot-space-md);
	border-top: 1px solid var(--ot-color-divider);
}
.ot-residences__panel-stats > div { display: flex; flex-direction: column; gap: 8px; }
.ot-residences__panel-stats dt { font-family: var(--ot-font-ui); font-size: 16px; color: var(--ot-color-muted); }
.ot-residences__panel-stats dd { margin: 0; font-size: 16px; letter-spacing: 0.02em; }
.ot-residences__empty { color: var(--ot-color-muted); }

@media (max-width: 1200px) {
	.ot-residences__layout { grid-template-columns: minmax(320px, 1fr) 1fr; gap: 32px; }
	.ot-residences__layout::before { display: none; }
}
@media (max-width: 800px) {
	.ot-residences__layout { grid-template-columns: 1fr; gap: 40px; }
	.ot-residences__panel-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Carousel (featured renderings) ---------- */
.ot-renderings__header { margin-bottom: var(--ot-space-xl); }
.ot-carousel { position: relative; }
.ot-carousel__track {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	gap: var(--ot-space-md);
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.ot-carousel__track::-webkit-scrollbar { display: none; }
.ot-carousel__slide {
	flex: 0 0 100%;
	scroll-snap-align: start;
}
.ot-carousel__slide img {
	width: 100%;
	aspect-ratio: 16/10;
	object-fit: cover;
}
.ot-carousel__caption { font-size: var(--ot-fs-small); color: var(--ot-color-muted); margin: var(--ot-space-sm) 0 0; }
.ot-carousel__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--ot-space-md);
	margin-top: var(--ot-space-lg);
}
.ot-carousel__btn {
	width: 40px; height: 40px;
	border: 1px solid var(--ot-color-border);
	border-radius: 50%;
	font-size: 20px;
	transition: background var(--ot-transition-fast), border-color var(--ot-transition-fast);
}
.ot-carousel__btn:hover { border-color: var(--ot-color-text); background: var(--ot-color-text); color: #fff; }
.ot-carousel__dots { display: inline-flex; gap: 8px; }
.ot-carousel__dot {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--ot-color-border);
	transition: background var(--ot-transition-fast), transform var(--ot-transition-fast);
}
.ot-carousel__dot.is-active { background: var(--ot-color-text); transform: scale(1.2); }

/* ---------- Building Renderings ---------- */
.ot-building__header { margin-bottom: var(--ot-space-xl); }
.ot-building__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--ot-space-md);
}
.ot-building__cell { margin: 0; }
.ot-building__cell img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
@media (max-width: 800px) { .ot-building__grid { grid-template-columns: 1fr; } }

/* ---------- Benefits + Location ---------- */
.ot-benefits__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: clamp(40px, 6vw, 120px);
	align-items: start;
}
.ot-benefits__heading { margin-bottom: var(--ot-space-lg); }
.ot-benefits__list { display: flex; flex-direction: column; gap: var(--ot-space-md); }
.ot-benefits__list li {
	display: grid;
	grid-template-columns: 48px 1fr;
	align-items: baseline;
	gap: var(--ot-space-md);
	padding-block: var(--ot-space-sm);
	border-top: 1px solid var(--ot-color-divider);
	font-size: var(--ot-fs-lead);
}
.ot-benefits__list li:last-child { border-bottom: 1px solid var(--ot-color-divider); }
.ot-benefits__num { font-family: var(--ot-font-ui); font-size: 14px; color: var(--ot-color-muted); font-feature-settings: "tnum" on; }
.ot-benefits__location {
	position: sticky;
	top: calc(var(--ot-header-height) + 24px);
	padding: var(--ot-space-lg);
	background: var(--ot-color-surface);
}
.ot-benefits__location-heading { font-size: 24px; margin: 0 0 var(--ot-space-sm); font-weight: 400; }
.ot-benefits__location-address { color: var(--ot-color-muted); margin-bottom: var(--ot-space-md); font-family: var(--ot-font-ui); font-size: 14px; line-height: 1.6; }
.ot-benefits__map { display: block; }
.ot-benefits__map img { width: 100%; }
@media (max-width: 900px) {
	.ot-benefits__grid { grid-template-columns: 1fr; }
	.ot-benefits__location { position: static; }
}

/* ---------- Register Interest form ---------- */
.ot-register { background: var(--ot-color-near-black); color: var(--ot-color-white); }
.ot-register .ot-h1 { color: var(--ot-color-white); }
.ot-register__header { margin-bottom: var(--ot-space-xl); max-width: 720px; }
.ot-register__intro { color: rgba(255, 255, 255, 0.7); font-size: var(--ot-fs-lead); }
.ot-register__form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--ot-space-md) var(--ot-space-lg);
	max-width: 960px;
}
.ot-field { display: flex; flex-direction: column; gap: 8px; }
.ot-field--full { grid-column: 1 / -1; }
.ot-field__label { font-family: var(--ot-font-ui); font-size: 14px; color: rgba(255,255,255,0.7); letter-spacing: 0.02em; }
.ot-field__input {
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(255,255,255,0.2);
	color: var(--ot-color-white);
	padding: 12px 0;
	font: inherit;
	font-size: 16px;
	transition: border-color var(--ot-transition-fast);
}
.ot-field__input:focus {
	outline: 0;
	border-bottom-color: var(--ot-color-white);
}
.ot-field__input--textarea { min-height: 96px; resize: vertical; }
.ot-register__consent { color: rgba(255,255,255,0.5); font-size: 13px; margin-top: var(--ot-space-sm); }
.ot-register__actions { display: flex; align-items: center; gap: var(--ot-space-md); flex-wrap: wrap; margin-top: var(--ot-space-md); }
.ot-register__actions .ot-btn--dark {
	background: var(--ot-color-white);
	color: var(--ot-color-near-black);
}
.ot-register__actions .ot-btn--dark:hover { background: rgba(255,255,255,0.9); }
.ot-register__status { margin: 0; font-size: 14px; color: rgba(255,255,255,0.8); }
.ot-register__status.is-error { color: #ffbaba; }
@media (max-width: 700px) { .ot-register__form { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.ot-footer { background: var(--ot-color-near-black); color: rgba(255,255,255,0.7); padding-block: var(--ot-space-xl); }
.ot-footer__inner {
	max-width: var(--ot-container);
	margin: 0 auto;
	padding-inline: var(--ot-container-padding-x);
	display: flex;
	flex-direction: column;
	gap: var(--ot-space-sm);
	font-size: 13px;
}
.ot-footer__links { display: flex; gap: var(--ot-space-md); flex-wrap: wrap; }
.ot-footer__links a:hover { color: var(--ot-color-white); }
.ot-footer__copyright { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: var(--ot-space-sm); }
.ot-footer__disclaimer { max-width: 720px; }

/* ---------- 404 ---------- */
.ot-404 { min-height: 60vh; display: flex; align-items: center; padding-block: var(--ot-space-2xl); }
.ot-404 .ot-h1 { margin-block: var(--ot-space-md); }
