:root {
	--color-primary: #002B4E;
	--color-secondary: #001D35;
	--color-gold: #C49A4A;
	--color-light: #F6F8FA;
	--color-white: #FFFFFF;
	--color-text: #17324A;
	--color-muted: #647386;
	--container-width: 1200px;
	--border-radius: 12px;
	--shadow-soft: 0 16px 45px rgba(0, 29, 53, .12);
	--shadow-card: 0 10px 28px rgba(0, 29, 53, .11);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--color-text);
	font-family: Inter, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	background: var(--color-white);
}

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

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

button,
input,
select {
	font: inherit;
}

h1,
h2,
h3,
h4 {
	margin: 0 0 14px;
	color: var(--color-secondary);
	font-family: "Playfair Display", Georgia, serif;
	line-height: 1.08;
}

h1 {
	font-size: clamp(2.5rem, 6vw, 5.2rem);
	letter-spacing: 0;
}

h2 {
	font-size: clamp(1.8rem, 3vw, 2.45rem);
}

h3 {
	font-size: 1.15rem;
}

p {
	margin: 0 0 16px;
}

.container {
	width: min(100% - 32px, var(--container-width));
	margin-inline: auto;
}

.section {
	padding: 56px 0;
}

.centered {
	text-align: center;
}

.narrow-content {
	max-width: 860px;
}

.section-heading {
	margin-bottom: 30px;
}

.section-heading h2::after {
	content: "";
	display: block;
	width: 36px;
	height: 2px;
	margin: 12px auto 0;
	background: var(--color-gold);
}

.section-heading:not(.centered) h2::after {
	margin-left: 0;
}

.eyebrow {
	margin-bottom: 14px;
	color: var(--color-gold);
	font-size: .84rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 13px 22px;
	border: 1px solid transparent;
	border-radius: 6px;
	font-size: .82rem;
	font-weight: 800;
	text-transform: uppercase;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 22px rgba(0, 29, 53, .16);
}

.btn--gold {
	background: var(--color-gold);
	color: var(--color-white);
}

.btn--primary {
	background: var(--color-secondary);
	color: var(--color-white);
}

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

.btn--light {
	border-color: rgba(255, 255, 255, .78);
	color: var(--color-white);
}

.btn--small {
	min-height: 34px;
	padding: 9px 14px;
	font-size: .72rem;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
}

.text-link {
	color: var(--color-secondary);
	font-size: .78rem;
	font-weight: 800;
	text-transform: uppercase;
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--color-white);
	box-shadow: 0 1px 0 rgba(0, 29, 53, .08);
}

.site-header.is-scrolled {
	box-shadow: var(--shadow-card);
}

.topbar {
	background: var(--color-secondary);
	color: var(--color-white);
	font-size: .78rem;
}

.topbar__inner,
.topbar__contacts,
.topbar__socials,
.main-header__inner {
	display: flex;
	align-items: center;
}

.topbar__inner {
	justify-content: space-between;
	min-height: 38px;
	gap: 18px;
}

.topbar__contacts,
.topbar__socials {
	gap: 20px;
}

.topbar a,
.topbar span {
	color: rgba(255, 255, 255, .92);
}

.topbar__socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	font-weight: 800;
}

.main-header__inner {
	min-height: 86px;
	justify-content: space-between;
	gap: 26px;
}

.site-logo,
.custom-logo-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--color-primary);
}

.custom-logo {
	max-width: 180px;
	max-height: 64px;
	object-fit: contain;
}

.site-logo__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 36px;
	border-radius: 8px;
	background: var(--color-primary);
	color: var(--color-white);
	font-weight: 900;
}

.site-logo strong {
	display: block;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.25rem;
	line-height: 1;
}

.site-logo small {
	display: block;
	color: var(--color-gold);
	font-size: .7rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: 34px;
	padding: 0;
	margin: 0;
	list-style: none;
	color: var(--color-secondary);
	font-size: .95rem;
	font-weight: 700;
}

.primary-menu a {
	padding: 32px 0;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(0, 43, 78, .12);
	border-radius: 8px;
	background: var(--color-white);
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 20px;
	height: 2px;
	margin: 5px auto;
	background: var(--color-secondary);
}

.hero {
	min-height: 595px;
	display: flex;
	align-items: center;
	background-position: center;
	background-size: cover;
	color: var(--color-white);
}

.hero__inner {
	padding: 88px 0 136px;
}

.hero h1 {
	max-width: 710px;
	color: var(--color-white);
}

.hero h1 span {
	color: var(--color-gold);
}

.hero__subtitle {
	max-width: 540px;
	margin-bottom: 30px;
	font-size: 1.1rem;
	color: rgba(255, 255, 255, .94);
}

.trust-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 44px;
	margin-top: 46px;
	font-size: .9rem;
	font-weight: 800;
}

.trust-badges span {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.booking-section {
	position: relative;
	z-index: 2;
	margin-top: -50px;
	padding-bottom: 28px;
}

.booking-search {
	display: grid;
	grid-template-columns: 1.15fr 1fr 1fr 1fr auto;
	gap: 22px;
	align-items: end;
	padding: 26px;
	border-radius: 10px;
	background: var(--color-white);
	box-shadow: var(--shadow-soft);
}

.field label {
	display: block;
	margin-bottom: 8px;
	color: var(--color-muted);
	font-size: .78rem;
	font-weight: 600;
}

.field input,
.field select,
.newsletter-form input {
	width: 100%;
	min-height: 46px;
	border: 1px solid #DDE5EC;
	border-radius: 6px;
	padding: 0 14px;
	color: var(--color-text);
	background: var(--color-white);
}

.service-grid,
.package-grid,
.tour-grid,
.testimonial-grid {
	display: grid;
	gap: 24px;
}

.service-grid {
	grid-template-columns: repeat(4, 1fr);
}

.service-card,
.package-card,
.testimonial-card,
.post-card {
	border: 1px solid #E3E9EF;
	border-radius: var(--border-radius);
	overflow: hidden;
	background: var(--color-white);
	box-shadow: 0 8px 22px rgba(0, 29, 53, .06);
}

.service-card__image,
.package-card__image,
.post-card__image {
	position: relative;
	overflow: hidden;
}

.service-card__image img,
.package-card__image img,
.post-card__image img {
	width: 100%;
	height: 190px;
	object-fit: cover;
}

.service-card__icon {
	position: absolute;
	left: 24px;
	bottom: -24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border: 3px solid var(--color-white);
	border-radius: 50%;
	background: var(--color-primary);
	color: var(--color-white);
	font-size: 1.45rem;
}

.service-card__body,
.package-card__body,
.post-card__body {
	padding: 34px 24px 24px;
}

.service-card p,
.why-item p,
.testimonial-card p,
.post-card p {
	color: var(--color-muted);
	font-size: .92rem;
}

.package-grid {
	grid-template-columns: repeat(3, 1fr);
}

.badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	padding: 5px 9px;
	border-radius: 4px;
	background: var(--color-gold);
	color: var(--color-white);
	font-size: .68rem;
	font-weight: 900;
	text-transform: uppercase;
}

.package-card__body {
	padding-top: 18px;
}

.package-meta,
.package-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.package-meta {
	flex-wrap: wrap;
	margin: 12px 0 18px;
	color: var(--color-muted);
	font-size: .82rem;
}

.price {
	margin: 0;
	color: var(--color-secondary);
	font-size: 1.3rem;
	font-weight: 900;
}

.price small {
	font-size: .78rem;
	font-weight: 700;
}

.section-action {
	margin-top: 24px;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	text-align: center;
}

.why-item {
	padding: 0 20px;
	border-right: 1px solid #DDE5EC;
}

.why-item:last-child {
	border-right: 0;
}

.why-item__icon {
	display: block;
	margin-bottom: 10px;
	color: var(--color-primary);
	font-size: 2.1rem;
}

.why-item h3 {
	font-family: Inter, Arial, sans-serif;
	font-size: .95rem;
}

.tour-grid {
	grid-template-columns: repeat(4, 1fr);
}

.tour-card {
	min-height: 195px;
	display: flex;
	align-items: end;
	padding: 24px;
	border-radius: 8px;
	background-position: center;
	background-size: cover;
	color: var(--color-white);
	box-shadow: var(--shadow-card);
}

.tour-card h3,
.tour-card p {
	margin-bottom: 3px;
	color: var(--color-white);
}

.tour-card span {
	color: rgba(255, 255, 255, .88);
	font-size: .86rem;
}

.tour-card__icon {
	display: block;
	margin-bottom: 8px;
	font-size: 2rem;
	color: var(--color-white);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.gallery-item {
	border-radius: 8px;
	overflow: hidden;
}

.gallery-item img {
	width: 100%;
	height: 190px;
	object-fit: cover;
	transition: transform .25s ease;
}

.gallery-item:hover img {
	transform: scale(1.04);
}

.testimonial-grid {
	grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
	padding: 28px;
}

.stars {
	margin-bottom: 16px;
	color: var(--color-gold);
	letter-spacing: 0;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 22px;
}

.testimonial-author > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--color-primary);
	color: var(--color-white);
	font-weight: 900;
}

.testimonial-author p {
	margin: 0;
	color: var(--color-secondary);
}

.testimonial-author small {
	display: block;
	color: var(--color-muted);
}

.faq-list {
	border: 1px solid #DDE5EC;
	border-radius: 8px;
	overflow: hidden;
	background: var(--color-white);
}

.faq-item + .faq-item {
	border-top: 1px solid #DDE5EC;
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 56px;
	padding: 0 18px;
	border: 0;
	background: var(--color-white);
	color: var(--color-secondary);
	font-weight: 800;
	text-align: left;
	cursor: pointer;
}

.faq-question span {
	font-size: 1.35rem;
}

.faq-answer {
	display: none;
	padding: 0 18px 18px;
	color: var(--color-muted);
}

.faq-item.is-open .faq-answer {
	display: block;
}

.faq-item.is-open .faq-question span {
	transform: rotate(45deg);
}

.cta-panel {
	width: min(100% - 32px, var(--container-width));
	min-height: 270px;
	display: flex;
	align-items: center;
	margin: 12px auto 56px;
	padding: 48px;
	border-radius: 10px;
	background-position: center;
	background-size: cover;
	color: var(--color-white);
	box-shadow: var(--shadow-soft);
}

.cta-panel h2 {
	max-width: 580px;
	color: var(--color-white);
}

.cta-panel p {
	max-width: 520px;
	color: rgba(255, 255, 255, .92);
}

.site-footer {
	background: var(--color-secondary);
	color: rgba(255, 255, 255, .82);
	padding: 54px 0 20px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.45fr .8fr .9fr 1fr 1fr;
	gap: 38px;
}

.site-logo--footer,
.site-logo--footer strong {
	color: var(--color-white);
}

.footer-about p,
.site-footer p,
.footer-menu,
.footer-contact {
	font-size: .88rem;
}

.site-footer h3 {
	color: var(--color-white);
	font-family: Inter, Arial, sans-serif;
	font-size: 1rem;
}

.footer-menu,
.footer-contact {
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-menu li,
.footer-contact li {
	margin-bottom: 8px;
}

.footer-socials {
	display: flex;
	gap: 14px;
	margin-top: 22px;
}

.footer-socials a {
	font-weight: 900;
	color: var(--color-white);
}

.newsletter-form {
	display: flex;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 6px;
	overflow: hidden;
}

.newsletter-form input {
	border: 0;
	border-radius: 0;
	background: rgba(255, 255, 255, .06);
	color: var(--color-white);
}

.newsletter-form button {
	width: 52px;
	border: 0;
	background: transparent;
	color: var(--color-white);
	cursor: pointer;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding-top: 26px;
	margin-top: 36px;
	border-top: 1px solid rgba(255, 255, 255, .12);
	font-size: .82rem;
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom div {
	display: flex;
	gap: 28px;
}

.whatsapp-float {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 99;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #22C55E;
	color: var(--color-white);
	box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
	font-size: 1.45rem;
}

.archive-header {
	margin-bottom: 32px;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.entry-header {
	margin-bottom: 28px;
}

.entry-featured {
	margin-bottom: 28px;
	border-radius: var(--border-radius);
	overflow: hidden;
}

.entry-content a {
	color: var(--color-primary);
	text-decoration: underline;
}

.single-product {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 46px;
	align-items: start;
}

.single-product__media {
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
}

.single-product__media img {
	width: 100%;
	min-height: 430px;
	object-fit: cover;
}

.detail-list {
	display: grid;
	gap: 12px;
	padding: 22px;
	margin: 26px 0;
	border-radius: 10px;
	background: var(--color-light);
}

.not-found-page {
	display: grid;
	place-items: center;
	min-height: 58vh;
	text-align: center;
}

.topbar-whatsapp {
	min-width: 98px;
	padding: 5px 12px;
	border-radius: 999px;
	background: #22C55E;
	color: var(--color-white) !important;
	text-align: center;
	font-weight: 800;
}

.yacht-charter-page {
	background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 52%, #FFFFFF 100%);
}

.charter-hero {
	position: relative;
	min-height: 330px;
	display: flex;
	align-items: center;
	background-position: center;
	background-size: cover;
	color: var(--color-white);
}

.charter-hero__inner {
	padding: 58px 0 96px;
}

.charter-hero h1 {
	max-width: 560px;
	margin-bottom: 12px;
	color: var(--color-white);
	font-size: clamp(2.6rem, 4.7vw, 4.7rem);
}

.charter-hero h1 span {
	color: var(--color-gold);
}

.charter-hero p:not(.eyebrow) {
	max-width: 520px;
	color: rgba(255, 255, 255, .96);
	font-weight: 600;
}

.charter-whatsapp {
	position: absolute;
	right: calc((100vw - min(100% - 32px, var(--container-width))) / 2);
	bottom: 68px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 9px 14px;
	border-radius: 999px;
	background: var(--color-white);
	color: var(--color-secondary);
	box-shadow: var(--shadow-card);
	font-size: .78rem;
	font-weight: 800;
}

.charter-whatsapp span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #22C55E;
	color: var(--color-white);
	font-size: .72rem;
}

.charter-whatsapp small {
	display: block;
	max-width: 78px;
	line-height: 1.2;
}

.charter-search-wrap {
	position: relative;
	z-index: 3;
	margin-top: -54px;
	padding-bottom: 22px;
}

.charter-search {
	display: grid;
	grid-template-columns: repeat(4, 1fr) auto;
	gap: 22px;
	align-items: end;
	padding: 24px 28px;
	border-radius: 10px;
	background: var(--color-white);
	box-shadow: 0 16px 42px rgba(0, 29, 53, .16);
}

.charter-search .field label {
	color: var(--color-secondary);
	font-size: .74rem;
	font-weight: 900;
	text-transform: uppercase;
}

.charter-search__button {
	min-width: 150px;
}

.charter-section {
	padding: 20px 0 14px;
}

.charter-section--tight {
	padding-top: 28px;
}

.charter-heading {
	margin-bottom: 20px;
}

.charter-heading p {
	margin-bottom: 3px;
	color: var(--color-gold);
	font-size: .82rem;
	font-weight: 800;
	text-transform: uppercase;
}

.charter-heading h2 {
	margin-bottom: 0;
	color: #05265A;
	font-family: Inter, Arial, sans-serif;
	font-size: clamp(1.5rem, 2.2vw, 2.05rem);
	font-weight: 900;
	text-transform: uppercase;
}

.charter-heading h2::after {
	content: "";
	display: block;
	width: 40px;
	height: 2px;
	margin: 9px auto 0;
	background: var(--color-gold);
}

.charter-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px 18px;
}

.charter-grid--four {
	gap: 18px;
}

.charter-card {
	overflow: hidden;
	border: 1px solid #DDE5EC;
	border-radius: 7px;
	background: var(--color-white);
	box-shadow: 0 8px 20px rgba(0, 29, 53, .06);
}

.charter-card__image {
	position: relative;
	height: 150px;
	overflow: hidden;
	background: #DDE5EC;
}

.charter-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.charter-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	padding: 4px 8px;
	border-radius: 4px;
	background: #05265A;
	color: var(--color-white);
	font-size: .62rem;
	font-weight: 900;
	text-transform: uppercase;
}

.charter-card__body {
	padding: 12px 14px 14px;
}

.charter-card h3 {
	margin-bottom: 8px;
	color: #05265A;
	font-family: Inter, Arial, sans-serif;
	font-size: .96rem;
	font-weight: 900;
}

.charter-card__meta {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 5px;
	margin-bottom: 12px;
	color: #82673D;
	font-size: .72rem;
	font-weight: 700;
}

.charter-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.charter-card__footer p {
	margin: 0;
	color: var(--color-secondary);
	font-size: .9rem;
	font-weight: 900;
}

.charter-card__footer small {
	font-size: .72rem;
	font-weight: 800;
}

.charter-card .btn--small,
.charter-option .btn--small {
	min-height: 30px;
	padding: 8px 12px;
	border-radius: 5px;
	font-size: .62rem;
}

.custom-request-card {
	min-height: 272px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 28px;
	border-radius: 7px;
	background: var(--color-secondary);
	color: var(--color-white);
	text-align: center;
}

.custom-request-card__icon {
	margin-bottom: 18px;
	color: var(--color-gold);
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.35rem;
	font-weight: 900;
}

.custom-request-card h3 {
	color: var(--color-white);
	font-family: Inter, Arial, sans-serif;
	font-size: 1.15rem;
	font-weight: 900;
}

.custom-request-card p {
	color: rgba(255, 255, 255, .88);
	font-size: .9rem;
}

.charter-trust {
	padding: 24px 0 8px;
}

.charter-trust__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 8px;
}

.charter-trust__item {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 70px;
	padding: 12px 16px;
	border: 1px solid #DDE5EC;
	border-radius: 8px;
	background: var(--color-white);
	box-shadow: 0 6px 18px rgba(0, 29, 53, .04);
}

.charter-trust__item span,
.charter-option > span {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(196, 154, 74, .55);
	border-radius: 50%;
	color: var(--color-primary);
	font-size: .76rem;
	font-weight: 900;
}

.charter-trust__item p {
	margin: 0;
	color: var(--color-secondary);
	font-size: .82rem;
	line-height: 1.25;
}

.charter-trust__item small {
	display: block;
	color: var(--color-muted);
	font-size: .75rem;
}

.charter-section--options {
	padding-top: 12px;
	padding-bottom: 16px;
}

.charter-options-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.charter-option {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 14px;
	align-items: center;
	padding: 18px;
	border: 1px solid #DDE5EC;
	border-radius: 8px;
	background: var(--color-white);
}

.charter-option h3 {
	margin: 0 0 3px;
	color: #05265A;
	font-family: Inter, Arial, sans-serif;
	font-size: .88rem;
	font-weight: 900;
	text-transform: uppercase;
}

.charter-option p {
	margin: 0;
	color: var(--color-muted);
	font-size: .8rem;
	line-height: 1.35;
}

.charter-option .btn {
	grid-column: 2;
	justify-self: end;
}

.charter-bottom-cta {
	padding: 0 0 18px;
}

.charter-cta-panel {
	min-height: 210px;
	padding: 34px 42px;
	border-radius: 8px;
	background-position: center;
	background-size: cover;
	color: var(--color-white);
	box-shadow: var(--shadow-soft);
}

.charter-cta-panel h2 {
	max-width: 620px;
	margin-bottom: 12px;
	color: var(--color-white);
	font-family: Inter, Arial, sans-serif;
	font-size: clamp(1.65rem, 3vw, 2.45rem);
	font-weight: 900;
}

.charter-cta-panel p {
	max-width: 620px;
	color: rgba(255, 255, 255, .94);
	font-size: 1.05rem;
}

.charter-booking-form {
	padding-top: 22px;
	background: var(--color-light);
}

.dyc-form,
.buy-yacht-info,
.buy-yacht-form {
	border-radius: 8px;
	background: #F7F7F8;
}

.dyc-form {
	padding: 28px;
}

.dyc-form label {
	display: block;
	margin-bottom: 18px;
}

.dyc-form span {
	display: block;
	margin-bottom: 10px;
	color: #061B55;
	font-size: .9rem;
	font-weight: 900;
	text-transform: uppercase;
}

.dyc-form input,
.dyc-form select,
.dyc-form textarea {
	width: 100%;
	min-height: 54px;
	border: 1px solid transparent;
	border-radius: 0;
	padding: 0 18px;
	background: var(--color-white);
	color: var(--color-text);
}

.dyc-form textarea {
	padding-top: 16px;
	resize: vertical;
}

.dyc-form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px 24px;
}

.dyc-booking-form .dyc-form-grid {
	grid-template-columns: repeat(4, 1fr);
}

.dyc-form-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.dyc-form-submit {
	width: 100%;
	border-radius: 0;
	background: #26379A;
}

.form-notice {
	margin-bottom: 18px;
	padding: 14px 16px;
	border-radius: 6px;
	font-weight: 700;
}

.form-notice--success {
	background: #DCFCE7;
	color: #166534;
}

.buy-yacht-hero {
	min-height: 285px;
}

.buy-yacht-layout {
	display: grid;
	grid-template-columns: .9fr 1.7fr;
	gap: 28px;
	align-items: stretch;
}

.buy-yacht-info,
.buy-yacht-form {
	padding: 58px;
}

.buy-yacht-info h2,
.buy-yacht-form h2 {
	color: #061B55;
	font-family: Inter, Arial, sans-serif;
	font-size: clamp(1.7rem, 2.6vw, 2.55rem);
	font-weight: 900;
	text-transform: uppercase;
}

.buy-yacht-line {
	display: inline-block;
	margin: 14px 0 28px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--color-gold);
	color: var(--color-muted);
	text-transform: uppercase;
}

.buy-yacht-info dl {
	margin: 0;
}

.buy-yacht-info dt {
	margin-top: 24px;
	color: var(--color-muted);
	font-size: 1rem;
}

.buy-yacht-info dd {
	margin: 8px 0 0;
	color: #061B55;
	font-size: 1.25rem;
	font-weight: 900;
}

.no-results {
	grid-column: 1 / -1;
	padding: 28px;
	border: 1px solid #DDE5EC;
	border-radius: 8px;
	background: var(--color-white);
	text-align: center;
	font-weight: 800;
}

.booking-step-page {
	min-height: 100vh;
	padding: 64px 16px;
	background: linear-gradient(rgba(0, 29, 53, .62), rgba(0, 29, 53, .62)), url("../images/marina.svg") center/cover fixed;
}

.booking-modal-card {
	width: min(100%, 620px);
	margin: 0 auto;
	overflow: hidden;
	border-radius: 10px;
	background: var(--color-white);
	box-shadow: 0 28px 80px rgba(0, 0, 0, .35);
}

.booking-step-header {
	padding: 22px;
	background: #FFD06A;
	color: #12248A;
	font-size: 1.45rem;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
}

.booking-step-body {
	padding: 28px 38px 36px;
	text-align: center;
}

.booking-step-image {
	width: 100%;
	height: 235px;
	object-fit: cover;
	margin-bottom: 0;
}

.booking-step-body h1 {
	display: inline-block;
	margin: 0 auto;
	padding: 8px 32px;
	border: 2px solid #E11D48;
	background: var(--color-white);
	color: #061B55;
	font-family: Inter, Arial, sans-serif;
	font-size: 1.25rem;
	font-weight: 900;
	transform: translateY(-1px);
}

.booking-specs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border: 2px solid #E11D48;
	background: var(--color-white);
	text-align: center;
}

.booking-specs div {
	padding: 16px 10px;
	border-right: 1px solid #E5E7EB;
}

.booking-specs div:last-child {
	border-right: 0;
}

.booking-specs strong,
.booking-specs span {
	display: block;
	color: #12248A;
	text-transform: uppercase;
}

.booking-specs strong {
	margin-bottom: 6px;
	font-size: .9rem;
}

.booking-step-form {
	margin-top: 18px;
	text-align: left;
}

.booking-step-form label {
	display: grid;
	grid-template-columns: 130px 1fr;
	align-items: center;
	gap: 14px;
	margin-bottom: 10px;
	color: #061B55;
	font-weight: 900;
	text-transform: uppercase;
}

.booking-step-form input,
.booking-step-form select {
	width: 100%;
	min-height: 48px;
	border: 0;
	padding: 0 14px;
	background: #F4F4F4;
}

.booking-inline {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.booking-inline label {
	grid-template-columns: 1fr;
}

.booking-step-form .btn {
	width: 100%;
	margin-top: 10px;
	border-radius: 999px;
	background: #26379A;
}

.booking-addons-page {
	padding: 34px 0 64px;
	background: #FFFFFF;
}

.addons-title {
	width: min(100%, 560px);
	margin: 0 auto 30px;
	padding: 18px;
	background: #06124A;
	color: var(--color-white);
	font-family: Inter, Arial, sans-serif;
	font-size: 1.8rem;
	font-weight: 900;
	text-align: center;
}

.addons-block {
	margin-bottom: 26px;
	border: 1px solid #E5E7EB;
	background: #FAFAFB;
}

.addons-block h2 {
	margin: 0;
	padding: 10px 14px;
	background: #06124A;
	color: var(--color-white);
	font-family: Inter, Arial, sans-serif;
	font-size: 1.05rem;
	font-weight: 800;
}

.addons-charter {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 0;
	align-items: stretch;
}

.addons-charter img {
	width: 100%;
	height: 260px;
	object-fit: cover;
}

.addons-charter > div {
	padding: 22px;
}

.addons-table {
	width: 100%;
	border-collapse: collapse;
	font-size: .92rem;
}

.addons-table th,
.addons-table td {
	padding: 12px 14px;
	border-bottom: 1px solid #E5E7EB;
	text-align: left;
}

.addons-table th {
	color: #26379A;
	text-transform: uppercase;
}

.addons-summary {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	padding-bottom: 22px;
}

.addons-summary h2 {
	grid-column: 1 / -1;
}

.addons-summary p,
.addons-summary label {
	margin: 0 24px;
}

.addons-summary strong {
	float: right;
	color: #061B55;
	font-size: 1.25rem;
}

.addons-checkout {
	width: 100%;
	border-radius: 0;
	background: #06124A;
	color: #FFD06A;
}

.booking-payment-page {
	min-height: 62vh;
	padding: 90px 0;
	background: var(--color-light);
	text-align: center;
}

.booking-payment-page h1 {
	color: var(--color-secondary);
}

.payment-card {
	margin-top: 28px;
	padding: 30px;
	border-radius: 10px;
	background: var(--color-white);
	box-shadow: var(--shadow-soft);
	text-align: left;
}

.payment-card h2 {
	font-family: Inter, Arial, sans-serif;
	font-size: 1.15rem;
}

.payment-build-marker {
	margin: 0 0 14px;
	color: #647386;
	font-size: .8rem;
	font-weight: 800;
	text-align: right;
}

.payment-row {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 0;
	border-bottom: 1px solid #E5E7EB;
}

.payment-total {
	color: var(--color-secondary);
	font-size: 1.2rem;
	font-weight: 900;
}

.payment-submit {
	width: 100%;
	margin-top: 22px;
}

.payment-debug {
	margin-top: 18px;
	padding: 14px;
	border: 1px solid #DDE5EC;
	border-radius: 8px;
	background: #F8FAFC;
}

.payment-debug summary {
	cursor: pointer;
	font-weight: 900;
}

.payment-debug pre {
	max-height: 220px;
	overflow: auto;
	padding: 12px;
	background: #0F172A;
	color: #E2E8F0;
	white-space: pre-wrap;
}

@media (max-width: 1080px) {
	.header-book {
		display: none;
	}

	.primary-menu {
		gap: 22px;
	}

	.booking-search,
	.charter-search,
	.service-grid,
	.tour-grid,
	.why-grid,
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.booking-search .btn {
		grid-column: span 2;
	}

	.charter-search .btn {
		grid-column: span 2;
	}

	.charter-grid,
	.charter-options-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.charter-trust__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.dyc-booking-form .dyc-form-grid,
	.buy-yacht-layout {
		grid-template-columns: repeat(2, 1fr);
	}

	.why-item {
		border-right: 0;
		border-bottom: 1px solid #DDE5EC;
		padding: 22px;
	}
}

@media (max-width: 820px) {
	.topbar__inner,
	.topbar__contacts {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
		padding: 8px 0;
	}

	.topbar__socials {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	.primary-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		padding: 0 16px 18px;
		background: var(--color-white);
		box-shadow: var(--shadow-card);
	}

	.primary-nav.is-open {
		display: block;
	}

	.primary-menu {
		display: block;
	}

	.primary-menu a {
		display: block;
		padding: 14px 0;
		border-bottom: 1px solid #EEF2F5;
	}

	.hero {
		min-height: 620px;
	}

	.hero__inner {
		padding: 72px 0 128px;
	}

	.trust-badges {
		gap: 18px;
	}

	.booking-search,
	.charter-search,
	.service-grid,
	.package-grid,
	.charter-grid,
	.charter-options-grid,
	.tour-grid,
	.gallery-grid,
	.testimonial-grid,
	.post-grid,
	.single-product,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.booking-search .btn {
		grid-column: auto;
	}

	.charter-search .btn {
		grid-column: auto;
	}

	.package-card__footer,
	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.why-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.cta-panel {
		padding: 34px 24px;
	}

	.charter-whatsapp {
		right: 16px;
		bottom: 24px;
	}

	.charter-trust__grid {
		grid-template-columns: 1fr;
	}

	.charter-option .btn {
		grid-column: 1 / -1;
		justify-self: stretch;
	}

	.dyc-form-grid,
	.dyc-booking-form .dyc-form-grid,
	.buy-yacht-layout {
		grid-template-columns: 1fr;
	}

	.buy-yacht-info,
	.buy-yacht-form {
		padding: 34px 24px;
	}

	.addons-charter,
	.addons-summary,
	.booking-inline {
		grid-template-columns: 1fr;
	}

	.booking-step-form label {
		grid-template-columns: 1fr;
	}

	.booking-specs {
		grid-template-columns: 1fr;
	}

	.booking-specs div {
		border-right: 0;
		border-bottom: 1px solid #E5E7EB;
	}
}

@media (max-width: 560px) {
	.container {
		width: min(100% - 24px, var(--container-width));
	}

	.section {
		padding: 42px 0;
	}

	.main-header__inner {
		min-height: 74px;
	}

	.site-logo strong {
		font-size: 1.05rem;
	}

	.hero {
		min-height: 620px;
	}

	.hero__inner {
		padding-top: 58px;
	}

	.button-row,
	.trust-badges {
		flex-direction: column;
		align-items: flex-start;
	}

	.btn {
		width: 100%;
	}

	.booking-section {
		margin-top: -34px;
	}

	.booking-search,
	.charter-search {
		padding: 18px;
		gap: 14px;
	}

	.charter-hero {
		min-height: 430px;
	}

	.charter-hero__inner {
		padding: 52px 0 112px;
	}

	.charter-card__image {
		height: 205px;
	}

	.charter-card__meta {
		grid-template-columns: 1fr;
	}

	.charter-card__footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.charter-cta-panel {
		padding: 28px 20px;
	}

	.why-grid {
		grid-template-columns: 1fr;
	}

	.gallery-item img,
	.service-card__image img,
	.package-card__image img {
		height: 210px;
	}
}

/* DYC WooCommerce checkout polish */
body.woocommerce-checkout,
body.woocommerce-order-pay {
	overflow-x: hidden;
}

.main-header__inner {
	display: grid;
	grid-template-columns: minmax(160px, 260px) minmax(0, 1fr) auto;
	justify-content: normal;
}

.site-branding {
	justify-self: start;
	min-width: 0;
}

.primary-nav {
	justify-self: end;
	min-width: 0;
}

.header-book {
	justify-self: end;
}

.custom-logo-link {
	margin: 0 !important;
}

.custom-logo {
	display: block;
	width: auto;
	height: auto;
	max-width: 170px;
	max-height: 62px;
}

.woocommerce-checkout .entry-content,
.woocommerce-order-pay .entry-content {
	max-width: 860px;
	margin: 0 auto;
}

.woocommerce-checkout .woocommerce,
.woocommerce-order-pay .woocommerce {
	max-width: 860px;
	margin: 0 auto;
}

.woocommerce-checkout form#order_review,
.woocommerce-order-pay form#order_review {
	margin-top: 28px;
}

.woocommerce-checkout #order_review table.shop_table,
.woocommerce-order-pay #order_review table.shop_table {
	width: 100%;
	border-collapse: collapse;
	background: var(--color-white);
	border: 1px solid #DDE5EC;
	border-radius: 8px;
	overflow: hidden;
}

.woocommerce-checkout #order_review th,
.woocommerce-checkout #order_review td,
.woocommerce-order-pay #order_review th,
.woocommerce-order-pay #order_review td {
	padding: 14px 16px;
	border-bottom: 1px solid #DDE5EC;
	text-align: left;
}

.woocommerce-checkout #payment,
.woocommerce-order-pay #payment {
	margin-top: 24px;
	padding: 18px;
	border-radius: 8px;
	background: #F0EEF5;
}

.woocommerce-checkout #place_order,
.woocommerce-order-pay #place_order {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 26px;
	border: 0;
	border-radius: 4px;
	background: var(--color-gold);
	color: var(--color-white);
	font-weight: 900;
	text-transform: uppercase;
	cursor: pointer;
}

.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-message,
.woocommerce-order-pay .woocommerce-error,
.woocommerce-order-pay .woocommerce-info,
.woocommerce-order-pay .woocommerce-message {
	max-width: 860px;
	margin: 0 auto 24px;
	padding: 16px 20px;
	border-top: 3px solid #B91C1C;
	background: #F7F7FA;
	list-style: none;
}

@media (max-width: 1080px) {
	.main-header__inner {
		grid-template-columns: 1fr auto;
	}

	.site-branding {
		grid-column: 1;
	}

	.primary-nav {
		justify-self: stretch;
	}
}