/* =====================================================================
   Bikini Yacht — Design System
   Luxury Mediterranean minimalism. Navy + white foundation,
   turquoise as a refined accent.
   ===================================================================== */

:root {
	--navy: #05123A;
	--blue-gray: #404661;
	--turquoise: #39ADB2;
	--soft-aqua: #8BC4CC;
	--mist-white: #F7F9FA;
	--white: #FFFFFF;
	--sand: #E8E2D8;
	--text: #151A24;

	--font-display: "Montserrat Alternates", "Quicksand", -apple-system, BlinkMacSystemFont, sans-serif;
	--font-body: "Manrope", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	--maxw: 1280px;
	--gutter: clamp(20px, 5vw, 64px);
	--radius: 18px;
	--radius-sm: 12px;
	--radius-pill: 999px;

	--shadow-sm: 0 6px 24px rgba(5, 18, 58, 0.06);
	--shadow-md: 0 18px 50px rgba(5, 18, 58, 0.10);
	--shadow-lg: 0 30px 80px rgba(5, 18, 58, 0.16);

	--space-section: clamp(64px, 9vw, 140px);
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------------------------------------------------------------- Reset */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	color: var(--text);
	background: var(--mist-white);
	line-height: 1.65;
	font-size: 17px;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

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

a {
	color: var(--navy);
	text-decoration: none;
	transition: color 0.25s var(--ease);
}

a:hover {
	color: var(--turquoise);
}

button {
	font-family: inherit;
}

/* ------------------------------------------------------------- Typography */
h1, h2, h3, h4, .by-nav {
	font-family: var(--font-display);
	color: var(--navy);
	font-weight: 300;
	letter-spacing: 0.04em;
	line-height: 1.12;
	margin: 0 0 0.5em;
}

h1 {
	font-size: clamp(42px, 6vw, 76px);
	line-height: 1.05;
}

h2 {
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1.15;
}

h3 {
	font-size: clamp(20px, 2.2vw, 26px);
}

p {
	margin: 0 0 1.1em;
}

.brand-style {
	letter-spacing: 0.18em;
	text-transform: lowercase;
}

.by-eyebrow {
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 0.28em;
	font-size: 12px;
	font-weight: 500;
	color: var(--turquoise);
	margin: 0 0 18px;
}

.by-lead {
	font-size: clamp(18px, 2vw, 21px);
	color: var(--blue-gray);
	max-width: 60ch;
}

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px;
	height: 1px;
	overflow: hidden;
	white-space: nowrap;
}

/* ------------------------------------------------------------- Skip link */
.by-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 1000;
	background: var(--navy);
	color: var(--white);
	padding: 12px 20px;
	border-radius: 0 0 8px 0;
}
.by-skip-link:focus {
	left: 0;
	color: var(--white);
}

/* ------------------------------------------------------------ Containers */
.by-container {
	width: 100%;
	max-width: var(--maxw);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.by-section {
	padding-block: var(--space-section);
}

.by-section--tight {
	padding-block: clamp(48px, 6vw, 90px);
}

.by-section--sand {
	background: var(--sand);
}

.by-section--mist {
	background: var(--mist-white);
}

.by-section--navy {
	background: var(--navy);
	color: rgba(255, 255, 255, 0.85);
}
.by-section--navy h1,
.by-section--navy h2,
.by-section--navy h3 {
	color: var(--white);
}

.by-section__head {
	max-width: 720px;
	margin-bottom: clamp(36px, 5vw, 64px);
}
.by-section__head--center {
	margin-inline: auto;
	text-align: center;
}
.by-section__title {
	margin-bottom: 18px;
}

/* ------------------------------------------------------------------ Grid */
.by-grid {
	display: grid;
	gap: clamp(20px, 2.4vw, 34px);
}
.by-grid--2 { grid-template-columns: repeat(2, 1fr); }
.by-grid--3 { grid-template-columns: repeat(3, 1fr); }
.by-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 980px) {
	.by-grid--3,
	.by-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.by-grid--2,
	.by-grid--3,
	.by-grid--4 { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------- Buttons */
.by-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-radius: var(--radius-pill);
	padding: 15px 32px;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.04em;
	cursor: pointer;
	border: 1px solid transparent;
	transition: all 0.28s var(--ease);
	text-align: center;
	line-height: 1;
}

.by-btn--primary {
	background: var(--navy);
	color: var(--white);
}
.by-btn--primary:hover {
	background: var(--turquoise);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.by-btn--secondary {
	background: transparent;
	color: var(--navy);
	border-color: rgba(5, 18, 58, 0.25);
}
.by-btn--secondary:hover {
	border-color: var(--turquoise);
	color: var(--turquoise);
}

.by-btn--ghost {
	background: rgba(255, 255, 255, 0.08);
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.4);
}
.by-btn--ghost:hover {
	background: var(--white);
	color: var(--navy);
}

.by-btn--light {
	background: var(--white);
	color: var(--navy);
}
.by-btn--light:hover {
	background: var(--turquoise);
	color: var(--white);
}

.by-link {
	position: relative;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--navy);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.by-link::after {
	content: "";
	width: 18px;
	height: 1px;
	background: var(--turquoise);
	transition: width 0.25s var(--ease);
}
.by-link:hover::after {
	width: 30px;
}

.by-btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 32px;
}
.by-btn-row--center {
	justify-content: center;
}

/* ----------------------------------------------------------------- Media */
.by-media {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
	aspect-ratio: 4 / 3;
	background: var(--soft-aqua);
}
.by-media__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--ease);
}
.by-media--placeholder {
	display: flex;
	align-items: flex-end;
	padding: 22px;
}
.by-media--placeholder .by-media__mark {
	font-family: var(--font-display);
	letter-spacing: 0.18em;
	text-transform: lowercase;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.92);
	position: relative;
	z-index: 2;
}
.by-media--sea { background: linear-gradient(135deg, #0b2a4a 0%, #39ADB2 60%, #8BC4CC 100%); }
.by-media--sunset { background: linear-gradient(135deg, #2a1a3a 0%, #8a5a6a 45%, #e8b48d 100%); }
.by-media--navy { background: linear-gradient(135deg, #05123A 0%, #404661 100%); }
.by-media--sand { background: linear-gradient(135deg, #c9bfa9 0%, #E8E2D8 100%); }
.by-media--aqua { background: linear-gradient(135deg, #39ADB2 0%, #8BC4CC 100%); }

/* ----------------------------------------------------------------- Cards */
.by-card {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
	display: flex;
	flex-direction: column;
}
.by-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}
.by-card:hover .by-media__img {
	transform: scale(1.06);
}
.by-card__media {
	aspect-ratio: 4 / 3;
	border-radius: 0;
}
.by-card__body {
	padding: 26px 26px 30px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}
.by-card__title {
	font-size: 22px;
	margin: 0;
}
.by-card__title a { color: inherit; }
.by-card__text {
	color: var(--blue-gray);
	margin: 0;
	font-size: 15.5px;
}
.by-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	font-size: 13px;
	letter-spacing: 0.04em;
	color: var(--blue-gray);
	margin: 4px 0 0;
}
.by-card__meta span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.by-card__price {
	font-family: var(--font-display);
	color: var(--navy);
	font-size: 15px;
	letter-spacing: 0.04em;
}
.by-card__foot {
	margin-top: auto;
	padding-top: 8px;
}
.by-card__media-link { display: block; }
.by-card__eyebrow { margin-bottom: 6px; }
.by-section__head .by-lead { margin-bottom: 0; }

/* -------------------------------------------------- Overlay (destination) */
.by-tile {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	min-height: 440px;
	display: flex;
	align-items: flex-end;
	box-shadow: var(--shadow-sm);
	transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.by-tile:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}
.by-tile__media,
.by-tile .by-media {
	position: absolute;
	inset: 0;
	border-radius: 0;
	aspect-ratio: auto;
	height: 100%;
}
.by-tile__media .by-media__img,
.by-tile .by-media__img {
	height: 100%;
}
.by-tile::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(5, 18, 58, 0) 30%, rgba(5, 18, 58, 0.78) 100%);
	z-index: 1;
}
.by-tile:hover .by-media__img {
	transform: scale(1.06);
}
a.by-tile { color: var(--white); }
.by-tile__body {
	position: relative;
	z-index: 2;
	padding: 32px;
	color: var(--white);
	display: block;
}
.by-tile__title {
	display: block;
	font-family: var(--font-display);
	font-weight: 300;
	color: var(--white);
	font-size: 28px;
	margin: 0 0 8px;
}
.by-tile__text {
	display: block;
	color: rgba(255, 255, 255, 0.85);
	font-size: 15px;
	margin: 0 0 16px;
	max-width: 36ch;
}
.by-link--light { color: #fff; }
.by-link--light::after { background: var(--turquoise); }

/* ----------------------------------------------------------------- Header */
.by-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: saturate(140%) blur(10px);
	border-bottom: 1px solid rgba(5, 18, 58, 0.06);
	transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.by-header.is-scrolled {
	box-shadow: var(--shadow-sm);
}
.by-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 84px;
}
.by-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}
.by-brand__logo {
	width: 50px;
	height: 50px;
	object-fit: contain;
}
.by-brand__name {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 20px;
	color: var(--navy);
}
.by-brand--light .by-brand__logo {
	filter: brightness(0) invert(1);
	opacity: 0.95;
}

.by-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2vw, 34px);
	list-style: none;
	margin: 0;
	padding: 0;
}
.by-nav__list a {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 15px;
	letter-spacing: 0.06em;
	color: var(--navy);
	position: relative;
	padding-block: 6px;
}
.by-nav__list a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1.5px;
	background: var(--turquoise);
	transition: width 0.28s var(--ease);
}
.by-nav__list a:hover,
.by-nav__list .current-menu-item > a {
	color: var(--turquoise);
}
.by-nav__list a:hover::after,
.by-nav__list .current-menu-item > a::after {
	width: 100%;
}
.by-nav__list .sub-menu {
	display: none;
}

.by-header__actions {
	display: flex;
	align-items: center;
	gap: 14px;
}
.by-header__cta {
	padding: 12px 24px;
	font-size: 14px;
}

/* Burger */
.by-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
}
.by-burger__bar {
	width: 26px;
	height: 2px;
	background: var(--navy);
	margin-inline: auto;
	transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.by-burger[aria-expanded="true"] .by-burger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.by-burger[aria-expanded="true"] .by-burger__bar:nth-child(2) { opacity: 0; }
.by-burger[aria-expanded="true"] .by-burger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.by-mobile-nav {
	position: fixed;
	inset: 84px 0 0;
	background: var(--white);
	z-index: 99;
	padding: 32px var(--gutter) 60px;
	overflow-y: auto;
	transform: translateY(-12px);
	opacity: 0;
	transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.by-mobile-nav.is-open {
	opacity: 1;
	transform: translateY(0);
}
.by-mobile-nav__list {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: flex;
	flex-direction: column;
}
.by-mobile-nav__list a {
	display: block;
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 300;
	color: var(--navy);
	padding: 16px 0;
	border-bottom: 1px solid rgba(5, 18, 58, 0.08);
}
.by-mobile-nav__list .sub-menu { display: none; }
.by-mobile-nav__actions {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.by-mobile-nav__actions .by-btn { width: 100%; }

@media (max-width: 900px) {
	.by-nav,
	.by-header__cta { display: none; }
	.by-burger { display: flex; }
}

/* ------------------------------------------------------------------- Hero */
.by-hero {
	position: relative;
	min-height: clamp(560px, 86vh, 900px);
	display: flex;
	align-items: center;
	color: var(--white);
	overflow: hidden;
}
.by-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.by-hero__bg .by-media {
	position: absolute;
	inset: 0;
	border-radius: 0;
	aspect-ratio: auto;
	height: 100%;
}
.by-hero__bg .by-media__img { height: 100%; }
.by-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(120deg, rgba(5, 18, 58, 0.72) 0%, rgba(5, 18, 58, 0.38) 55%, rgba(5, 18, 58, 0.18) 100%);
}
.by-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 760px;
	padding-block: clamp(80px, 12vh, 140px);
}
.by-hero__brand {
	font-family: var(--font-display);
	letter-spacing: 0.22em;
	text-transform: lowercase;
	font-size: 15px;
	color: var(--soft-aqua);
	margin-bottom: 22px;
}
.by-hero__title {
	color: var(--white);
	margin-bottom: 22px;
}
.by-hero__sub {
	font-size: clamp(17px, 2vw, 20px);
	color: rgba(255, 255, 255, 0.9);
	max-width: 56ch;
	margin-bottom: 8px;
}

/* Compact page hero */
.by-page__hero {
	background: var(--navy);
	color: var(--white);
	padding-block: clamp(90px, 14vh, 150px);
	text-align: center;
}
.by-page__title {
	color: var(--white);
	margin: 0;
}
.by-page__hero .by-eyebrow {
	color: var(--soft-aqua);
}

/* --------------------------------------------------------------- Prose */
.by-prose {
	max-width: 760px;
}
.by-prose h2 { margin-top: 1.6em; }
.by-prose h3 { margin-top: 1.4em; }
.by-prose img { border-radius: var(--radius); margin-block: 1.4em; }
.by-prose ul,
.by-prose ol { padding-left: 1.3em; margin-bottom: 1.2em; }
.by-prose li { margin-bottom: 0.5em; }
.by-prose a { color: var(--turquoise); text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------- Split / intro layout */
.by-split {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(32px, 5vw, 80px);
	align-items: center;
}
.by-split--reverse .by-split__media { order: -1; }
.by-split__media .by-media {
	aspect-ratio: 5 / 6;
}
@media (max-width: 880px) {
	.by-split { grid-template-columns: 1fr; }
	.by-split--reverse .by-split__media { order: 0; }
}
.by-split__aside {
	background: var(--white);
	border-radius: var(--radius);
	padding: 32px;
	box-shadow: var(--shadow-sm);
}

/* ------------------------------------------------------------ Feature list */
.by-features {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(20px, 3vw, 40px);
}
@media (max-width: 880px) { .by-features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .by-features { grid-template-columns: 1fr; } }
.by-feature {
	padding: 30px 28px;
	background: var(--white);
	border-radius: var(--radius);
	border: 1px solid rgba(5, 18, 58, 0.06);
}
.by-feature__icon {
	width: 40px;
	height: 40px;
	color: var(--turquoise);
	margin-bottom: 16px;
}
.by-feature__title {
	font-size: 19px;
	margin: 0 0 8px;
}
.by-feature__text {
	color: var(--blue-gray);
	font-size: 15px;
	margin: 0;
}

/* --------------------------------------------------------------- Steps */
.by-steps {
	counter-reset: step;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(20px, 3vw, 40px);
}
@media (max-width: 880px) { .by-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .by-steps { grid-template-columns: 1fr; } }
.by-step {
	position: relative;
	padding-top: 18px;
}
.by-step__num {
	font-family: var(--font-display);
	font-size: 46px;
	font-weight: 300;
	color: var(--soft-aqua);
	line-height: 1;
	margin-bottom: 14px;
	display: block;
}
.by-step__title {
	font-size: 19px;
	margin: 0 0 8px;
}
.by-step__text {
	color: var(--blue-gray);
	font-size: 15px;
	margin: 0;
}
.by-section--navy .by-step__text { color: rgba(255, 255, 255, 0.72); }
.by-section--navy .by-step__num { color: var(--turquoise); }

/* --------------------------------------------------------------- Chips */
.by-chips {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.by-chip {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	border-radius: var(--radius-pill);
	background: var(--mist-white);
	border: 1px solid rgba(5, 18, 58, 0.1);
	font-size: 14px;
	color: var(--blue-gray);
	letter-spacing: 0.02em;
}
.by-section--navy .by-chip {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.85);
}

/* --------------------------------------------------------- Routes / lists */
.by-routes {
	list-style: none;
	margin: 0;
	padding: 0;
}
.by-routes li {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(5, 18, 58, 0.08);
	font-size: 16px;
}
.by-routes li::before {
	content: "";
	flex: none;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--turquoise);
}

/* ----------------------------------------------------------------- CTA */
.by-cta {
	position: relative;
	background: var(--navy);
	color: var(--white);
	text-align: center;
	overflow: hidden;
}
.by-cta__inner {
	position: relative;
	z-index: 2;
	max-width: 720px;
	margin-inline: auto;
}
.by-cta h2 { color: var(--white); }
.by-cta p { color: rgba(255, 255, 255, 0.8); }
.by-cta::before {
	content: "";
	position: absolute;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(57, 173, 178, 0.35), transparent 70%);
	top: -200px;
	right: -120px;
	z-index: 1;
}

/* ----------------------------------------------------------------- Footer */
.by-footer {
	background: var(--navy);
	color: rgba(255, 255, 255, 0.7);
	padding-block: clamp(54px, 7vw, 90px) 36px;
}
.by-footer a { color: rgba(255, 255, 255, 0.7); }
.by-footer a:hover { color: var(--turquoise); }
.by-footer__top {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
	gap: clamp(28px, 4vw, 56px);
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 880px) { .by-footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .by-footer__top { grid-template-columns: 1fr; } }
.by-footer__tagline {
	font-family: var(--font-display);
	color: var(--white);
	font-size: 20px;
	margin: 14px 0 10px;
}
.by-footer__line { color: var(--soft-aqua); margin: 0 0 4px; }
.by-footer__sub { font-size: 14px; margin: 0; }
.by-footer__heading {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--white);
	margin: 0 0 18px;
}
.by-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-size: 15px;
}
.by-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding-top: 28px;
	font-size: 13.5px;
}
.by-footer__copy { margin: 0; }
.by-footer__legal-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	font-size: 13.5px;
}

/* ------------------------------------------------------- WhatsApp FAB */
.by-whatsapp-fab {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 90;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--turquoise);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-md);
	transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.by-whatsapp-fab:hover {
	background: var(--navy);
	color: var(--white);
	transform: translateY(-3px) scale(1.05);
}

/* ----------------------------------------------------------- Pagination */
.by-pagination {
	margin-top: 56px;
	display: flex;
	justify-content: center;
}
.by-pagination .nav-links {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.by-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: var(--radius-pill);
	border: 1px solid rgba(5, 18, 58, 0.14);
	color: var(--navy);
	font-weight: 600;
}
.by-pagination .page-numbers.current,
.by-pagination .page-numbers:hover {
	background: var(--navy);
	color: var(--white);
	border-color: var(--navy);
}

.by-empty { text-align: center; color: var(--blue-gray); }

/* ------------------------------------------------------------------ Forms */
.by-form-wrap {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	padding: clamp(28px, 4vw, 52px);
}
.by-inquiry__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: clamp(28px, 4vw, 64px);
	align-items: start;
}
@media (max-width: 900px) { .by-inquiry__grid { grid-template-columns: 1fr; } }

.by-form .by-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
@media (max-width: 560px) { .by-form .by-form-row { grid-template-columns: 1fr; } }
.by-field { margin-bottom: 18px; display: block; }
.by-field > label,
.by-field-label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--blue-gray);
	margin-bottom: 8px;
}
.by-form input[type="text"],
.by-form input[type="email"],
.by-form input[type="tel"],
.by-form input[type="number"],
.by-form input[type="date"],
.by-form select,
.by-form textarea,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(5, 18, 58, 0.16);
	border-radius: var(--radius-sm);
	background: var(--mist-white);
	font-family: var(--font-body);
	font-size: 16px;
	color: var(--text);
	transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.by-form textarea,
.wpcf7 textarea { min-height: 130px; resize: vertical; }
.by-form input:focus,
.by-form select:focus,
.by-form textarea:focus,
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
	outline: none;
	border-color: var(--turquoise);
	background: var(--white);
	box-shadow: 0 0 0 4px rgba(57, 173, 178, 0.12);
}
.by-consent,
.wpcf7-acceptance .wpcf7-list-item {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 14px;
	color: var(--blue-gray);
	margin: 6px 0 18px;
}
.wpcf7-acceptance .wpcf7-list-item { margin: 0; }
.by-form input[type="submit"],
.wpcf7 input[type="submit"],
.wpcf7-submit {
	background: var(--navy);
	color: var(--white);
	border: none;
	border-radius: var(--radius-pill);
	padding: 16px 40px;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: all 0.28s var(--ease);
}
.by-form input[type="submit"]:hover,
.wpcf7 input[type="submit"]:hover,
.wpcf7-submit:hover {
	background: var(--turquoise);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}
.wpcf7 form .wpcf7-response-output {
	border-radius: var(--radius-sm);
	margin: 18px 0 0;
	padding: 14px 18px;
	font-size: 14px;
}

/* Aside card next to the form */
.by-inquiry__aside {
	background: var(--navy);
	color: rgba(255, 255, 255, 0.82);
	border-radius: var(--radius);
	padding: clamp(28px, 3.5vw, 44px);
}
.by-inquiry__aside h3 { color: var(--white); }
.by-flow {
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
	counter-reset: flow;
}
.by-flow li {
	position: relative;
	padding: 0 0 22px 38px;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.8);
}
.by-flow li::before {
	counter-increment: flow;
	content: counter(flow);
	position: absolute;
	left: 0;
	top: -2px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(57, 173, 178, 0.2);
	border: 1px solid var(--turquoise);
	color: var(--turquoise);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 600;
}
.by-flow li:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 12.5px;
	top: 26px;
	bottom: 4px;
	width: 1px;
	background: rgba(255, 255, 255, 0.18);
}

/* ----------------------------------------------------- Scroll animations */
[data-by-reveal] {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
	will-change: opacity, transform;
}
[data-by-reveal].is-visible {
	opacity: 1;
	transform: none;
}
[data-by-reveal][data-by-delay="1"] { transition-delay: 0.08s; }
[data-by-reveal][data-by-delay="2"] { transition-delay: 0.16s; }
[data-by-reveal][data-by-delay="3"] { transition-delay: 0.24s; }
[data-by-reveal][data-by-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	[data-by-reveal] { opacity: 1; transform: none; transition: none; }
	.by-media__img { transition: none; }
}

/* --------------------------------------------------------- Admin notice */
.by-admin-note code { background: rgba(0,0,0,0.06); padding: 1px 5px; border-radius: 4px; }

/* ----------------------------------------------------- Misc utilities */
.by-center { text-align: center; }
.by-mt-0 { margin-top: 0; }
.by-divider {
	height: 1px;
	background: rgba(5, 18, 58, 0.1);
	border: 0;
	margin-block: clamp(40px, 6vw, 80px);
}
