/* ============================================================
   ナガンヌ島 LP（北谷発）— style.css
   Palette / Type tokens
   ============================================================ */
:root {
	--sea: #0B6F8C;
	/* 深い海 */
	--lagoon: #2FB4C8;
	/* ケラマブルー */
	--lagoon-light: #E4F5F8;
	--sand: #FBF8F1;
	/* 白砂 */
	--sand-deep: #EFE7D6;
	--coral: #F0644A;
	/* CTA */
	--coral-dark: #D9503A;
	--ink: #1B2A33;
	--ink-soft: #4A5B66;
	--line: #D5DEE2;
	--white: #fff;

	--font-display: "Shippori Mincho B1", "Hiragino Mincho ProN", "Yu Mincho", serif;
	--font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
	--font-num: "Jost", "Noto Sans JP", sans-serif;

	--container: 1120px;
	--radius: 14px;
	--shadow: 0 12px 40px rgba(11, 111, 140, .12);
	--ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px
}

body {
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--sand);
	line-height: 1.9;
	font-size: 16px;
	letter-spacing: .02em;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

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

ul,
ol {
	list-style: none
}

strong {
	font-weight: 700
}

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px
}

.center {
	text-align: center
}

.pc {
	display: inline
}

.sp {
	display: none
}

@media (max-width:768px) {
	.pc {
		display: none
	}

	.sp {
		display: inline
	}
}

/* ---------- Typography ---------- */
.eyebrow {
	font-family: var(--font-num);
	font-size: 12px;
	letter-spacing: .32em;
	text-transform: uppercase;
	color: var(--lagoon);
	font-weight: 600;
	margin-bottom: 12px;
}

.eyebrow--white {
	color: rgba(255, 255, 255, .85)
}

.h2 {
	font-family: var(--font-display);
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: .06em;
	color: var(--sea);
}

.h3 {
	font-family: var(--font-display);
	font-size: clamp(20px, 2.4vw, 26px);
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: .05em;
}

.h3--line {
	padding-bottom: 12px;
	margin-bottom: 20px;
	border-bottom: 2px solid var(--lagoon);
	font-size: 20px;
	color: var(--sea);
}

.section-head {
	text-align: center;
	margin-bottom: 56px
}

.section-head--left {
	text-align: left;
	margin-bottom: 0
}

.section-head__lead {
	margin-top: 16px;
	color: var(--ink-soft);
	font-size: 15px
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 36px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: .06em;
	line-height: 1;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
	cursor: pointer;
}

.btn::after {
	content: "→";
	font-family: var(--font-num);
	font-weight: 400;
	transition: transform .3s var(--ease)
}

.btn:hover::after {
	transform: translateX(4px)
}

/* ページ内リンク（href="#..."）は下向き矢印 */
.btn[href^="#"]::after {
	content: "↓"
}

.btn[href^="#"]:hover::after {
	transform: translateY(4px)
}

.btn--coral {
	background: var(--coral);
	color: #fff;
	box-shadow: 0 10px 24px rgba(240, 100, 74, .35)
}

.btn--coral:hover {
	background: var(--coral-dark);
	transform: translateY(-2px)
}

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

.btn--outline:hover {
	background: var(--sea);
	color: #fff
}

.btn--white {
	background: #fff;
	color: var(--sea)
}

.btn--white:hover {
	background: var(--lagoon-light)
}

.btn--sm {
	padding: 10px 20px;
	font-size: 13px
}

.btn--lg {
	padding: 20px 48px;
	font-size: 17px
}

.btn--block {
	width: 100%
}

.btn:focus-visible {
	outline: 3px solid var(--lagoon);
	outline-offset: 3px
}

/* ---------- Header ---------- */
.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	padding: 14px 0;
	transition: background .4s, box-shadow .4s, padding .4s;
}

.site-header.is-scrolled {
	background: rgba(251, 248, 241, .94);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
	padding: 8px 0;
}

.site-header__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	gap: 32px;
}

.site-header__brand {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
	color: #fff;
	transition: color .4s
}

.is-scrolled .site-header__brand {
	color: var(--sea)
}

.site-header__brand-jp {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 18px;
	letter-spacing: .1em
}

.site-header__brand-en {
	font-family: var(--font-num);
	font-size: 10px;
	letter-spacing: .3em;
	opacity: .8
}

.site-header__nav {
	margin-left: auto;
	display: flex;
	gap: 28px;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	transition: color .4s
}

.is-scrolled .site-header__nav {
	color: var(--ink)
}

.site-header__nav a {
	position: relative;
	padding: 4px 0
}

.site-header__nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: currentColor;
	transition: width .3s var(--ease);
}

.site-header__nav a:hover::after {
	width: 100%
}

.site-header__sns {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	margin-left: -8px;
	transition: color .4s, opacity .3s
}

.is-scrolled .site-header__sns {
	color: var(--sea)
}

.site-header__sns:hover {
	opacity: .65
}

.site-header__sns:focus-visible {
	outline: 2px solid var(--lagoon);
	outline-offset: 4px;
	border-radius: 8px
}

@media (max-width:900px) {
	.site-header__nav {
		display: none
	}

	.site-header__sns {
		margin-left: auto
	}
}

/* ---------- Hero ---------- */
.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	color: #fff;
	overflow: hidden;
}

.hero__bg,
.hero__bg img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover
}

.hero__bg img {
	animation: heroZoom 14s var(--ease) both;
	transform-origin: center
}

@keyframes heroZoom {
	from {
		transform: scale(1.08)
	}

	to {
		transform: scale(1)
	}
}

.hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(6, 50, 70, .62) 0%, rgba(6, 50, 70, .35) 45%, rgba(6, 50, 70, 0) 75%),
		linear-gradient(180deg, rgba(6, 50, 70, .3) 0%, rgba(6, 50, 70, 0) 40%, rgba(6, 50, 70, .5) 100%);
}

.hero__inner {
	position: relative;
	z-index: 1;
	max-width: var(--container);
	margin: 0 auto;
	padding: 140px 24px 120px;
	width: 100%
}

.hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
	font-family: var(--font-display);
	font-size: clamp(15px, 1.8vw, 20px);
	letter-spacing: .14em;
	opacity: 0;
	animation: fadeUp 1s .3s var(--ease) forwards;
}

.hero__eyebrow em {
	font-family: var(--font-num);
	font-style: normal;
	font-weight: 600;
	font-size: 1.35em;
	letter-spacing: .06em
}

.hero__eyebrow-line {
	width: 48px;
	height: 1px;
	background: #fff;
	opacity: .8
}

.hero__title {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: clamp(40px, 7vw, 84px);
	line-height: 1.25;
	letter-spacing: .08em;
	margin: 20px 0 14px;
	text-shadow: 0 4px 30px rgba(0, 40, 60, .35);
	opacity: 0;
	animation: fadeUp 1.1s .6s var(--ease) forwards;
}

.hero__sub {
	font-family: var(--font-display);
	font-size: clamp(17px, 2.4vw, 26px);
	letter-spacing: .14em;
	opacity: 0;
	animation: fadeUp 1s .9s var(--ease) forwards;
}

.hero__name {
	margin: 36px 0 40px;
	display: flex;
	flex-direction: column;
	opacity: 0;
	animation: fadeUp 1s 1.15s var(--ease) forwards;
}

.hero__name span {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(30px, 4.5vw, 52px);
	letter-spacing: .2em;
	line-height: 1.2;
}

.hero__name small {
	font-family: var(--font-num);
	font-size: 12px;
	letter-spacing: .5em;
	margin-top: 6px;
	opacity: .85
}

.hero .btn {
	opacity: 0;
	animation: fadeUp 1s 1.4s var(--ease) forwards
}

.hero__scroll {
	position: absolute;
	left: 24px;
	bottom: 28px;
	z-index: 1;
	font-family: var(--font-num);
	font-size: 10px;
	letter-spacing: .4em;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	writing-mode: vertical-rl;
	opacity: .8;
}

.hero__scroll span {
	width: 1px;
	height: 48px;
	background: #fff;
	position: relative;
	overflow: hidden
}

.hero__scroll span::after {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--lagoon);
	animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
	0% {
		transform: translateY(-100%)
	}

	60%,
	100% {
		transform: translateY(100%)
	}
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(24px)
	}

	to {
		opacity: 1;
		transform: none
	}
}

/* ---------- Lead ---------- */
.lead {
	padding: 110px 0 90px;
	background: var(--sand);
	text-align: center;
	position: relative
}

.lead__inner {
	max-width: 720px
}

.lead p {
	font-family: var(--font-display);
	font-size: clamp(16px, 2vw, 20px);
	line-height: 2.3;
	letter-spacing: .08em;
	margin-bottom: 28px;
	color: var(--ink)
}

.lead__strong {
	font-weight: 700;
	color: var(--sea);
	font-size: clamp(20px, 2.6vw, 26px) !important;
	margin-top: 20px
}

/* ---------- About ---------- */
.about {
	padding: 80px 0 120px;
	background: #fff
}

.about__grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 64px;
	align-items: center
}

.about__photo {
	position: relative
}

.about__photo img {
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	aspect-ratio: 4/3;
	object-fit: cover
}

.about__photo figcaption {
	position: absolute;
	left: 20px;
	bottom: -16px;
	background: var(--sea);
	color: #fff;
	font-size: 12px;
	letter-spacing: .1em;
	padding: 8px 16px;
	border-radius: 6px;
}

.about__text p {
	margin-bottom: 18px
}

.about__text .h2 {
	margin-bottom: 24px
}

.about__quote {
	font-family: var(--font-display);
	font-size: clamp(18px, 2.2vw, 22px);
	color: var(--sea);
	border-left: 3px solid var(--lagoon);
	padding: 6px 0 6px 20px;
	margin: 28px 0 12px;
	letter-spacing: .06em;
}

.about__catch {
	font-family: var(--font-display);
	font-size: clamp(20px, 2.4vw, 26px);
	font-weight: 700;
	color: var(--sea);
	margin-top: 32px !important
}

@media (max-width:820px) {
	.about__grid {
		grid-template-columns: 1fr;
		gap: 48px
	}
}

/* ---------- Enjoy ---------- */
.enjoy {
	padding: 110px 0;
	background: linear-gradient(180deg, var(--lagoon-light) 0%, var(--sand) 100%)
}

.enjoy__item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
	margin-bottom: 96px;
}

.enjoy__item--rev .enjoy__photo {
	order: 2
}

.enjoy__photo img {
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	aspect-ratio: 4/3;
	object-fit: cover;
	width: 100%
}

.enjoy__num {
	font-family: var(--font-num);
	font-size: 56px;
	font-weight: 400;
	line-height: 1;
	color: var(--lagoon);
	letter-spacing: .06em;
	margin-bottom: 8px;
	position: relative;
}

.enjoy__num::after {
	content: "";
	display: inline-block;
	width: 40px;
	height: 1px;
	background: var(--lagoon);
	vertical-align: middle;
	margin-left: 14px
}

.enjoy__body .h3 {
	color: var(--sea);
	margin-bottom: 20px
}

.enjoy__body p {
	margin-bottom: 14px
}

.enjoy__poem {
	font-family: var(--font-display);
	font-size: 18px;
	line-height: 2.1;
	color: var(--sea);
	letter-spacing: .08em
}

.enjoy__catch {
	font-family: var(--font-display);
	font-size: clamp(18px, 2.2vw, 22px);
	font-weight: 700;
	color: var(--sea);
	letter-spacing: .08em;
	margin-top: 22px !important;
}

.enjoy__thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin-top: 22px
}

.enjoy__thumbs li {
	font-size: 11px;
	text-align: center;
	color: var(--ink-soft);
	letter-spacing: .04em;
	line-height: 1.5
}

.enjoy__thumbs img {
	aspect-ratio: 4/3;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 6px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, .08)
}

@media (max-width:820px) {
	.enjoy__item {
		grid-template-columns: 1fr;
		gap: 32px;
		margin-bottom: 72px
	}

	.enjoy__item--rev .enjoy__photo {
		order: 0
	}

	.enjoy__num {
		font-size: 44px
	}
}

/* ---------- Access ---------- */
.access {
	padding: 110px 0;
	background: #fff
}

.route {
	background: var(--sand);
	border-radius: 20px;
	padding: 44px 32px 34px;
	margin-bottom: 56px;
	border: 1px solid var(--sand-deep);
}

.route__steps {
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	align-items: center;
	gap: 12px;
}

.route__step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center
}

.route__icon {
	font-size: 40px;
	line-height: 1;
	margin-bottom: 8px
}

.route__label {
	font-size: 12px;
	letter-spacing: .2em;
	color: var(--lagoon);
	font-weight: 700
}

.route__place {
	font-family: var(--font-display);
	font-size: clamp(16px, 1.8vw, 20px);
	font-weight: 700;
	color: var(--sea);
	letter-spacing: .06em
}

.route__step--sea {
	position: relative;
	padding: 0 8px
}

.route__wave {
	position: relative;
	width: 100%;
	height: 56px
}

.route__wave svg {
	width: 100%;
	height: 40px;
	position: absolute;
	left: 0;
	top: 16px
}

.route__wave-path {
	stroke: var(--lagoon);
	stroke-width: 2;
	stroke-dasharray: 6 6;
	animation: waveFlow 3s linear infinite
}

@keyframes waveFlow {
	to {
		stroke-dashoffset: -24
	}
}

.route__boat {
	position: absolute;
	top: -4px;
	left: 0;
	font-size: 32px;
	line-height: 1;
	filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .15));
}

.route.is-inview .route__boat {
	animation: boatGo 2.6s .3s var(--ease) forwards
}

@keyframes boatGo {
	0% {
		left: 0;
		transform: translateY(0)
	}

	50% {
		transform: translateY(-4px)
	}

	100% {
		left: calc(100% - 34px);
		transform: translateY(0)
	}
}

.route__time {
	font-family: var(--font-display);
	font-size: 16px;
	letter-spacing: .14em;
	color: var(--sea);
	margin-top: 4px;
}

.route__time em {
	font-family: var(--font-num);
	font-style: normal;
	font-weight: 600;
	font-size: 36px;
	letter-spacing: .02em;
	margin-right: 2px
}

.route__note {
	text-align: center;
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px dashed var(--line);
	color: var(--ink-soft);
	font-size: 15px;
}

@media (max-width:640px) {
	.route {
		padding: 32px 18px 26px
	}

	.route__steps {
		grid-template-columns: 1fr;
		gap: 6px
	}

	.route__step--sea {
		padding: 10px 0
	}

	.route__wave {
		height: 48px
	}

	.route__icon {
		font-size: 34px
	}
}

.access__grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 40px;
	align-items: stretch
}

.access__card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 36px;
}

.timetable {
	width: 100%;
	border-collapse: collapse;
	font-family: var(--font-num);
	margin-bottom: 28px
}

.timetable th,
.timetable td {
	padding: 14px 10px;
	text-align: center;
	border-bottom: 1px solid var(--line)
}

.timetable thead th {
	font-family: var(--font-body);
	font-size: 13px;
	color: var(--ink-soft);
	font-weight: 500;
	background: var(--lagoon-light)
}

.timetable tbody th {
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 700;
	color: var(--sea);
	width: 64px
}

.timetable td {
	font-size: 26px;
	font-weight: 500;
	letter-spacing: .04em;
	color: var(--ink)
}

.timetable td small {
	display: block;
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .06em;
	line-height: 1.4;
	color: var(--ink-soft);
	margin-bottom: 2px
}

.timetable__note {
	font-size: 13px;
	color: var(--ink-soft);
	margin-bottom: 14px
}

.parking h4 {
	font-size: 15px;
	color: var(--sea);
	letter-spacing: .1em;
	margin-bottom: 8px;
	padding-left: 12px;
	border-left: 3px solid var(--lagoon)
}

.parking p {
	font-size: 14px;
	margin-bottom: 6px;
	line-height: 1.8
}

.parking small {
	color: var(--ink-soft)
}

.parking__link {
	color: var(--ink-soft);
	font-size: 13px
}

.parking__link a {
	color: var(--sea);
	text-decoration: underline;
	text-underline-offset: 3px
}

.access__after {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	color: #fff;
	min-height: 420px;
	display: flex;
	align-items: flex-end;
}

.access__photo,
.access__photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover
}

.access__after::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(11, 60, 80, 0) 20%, rgba(11, 60, 80, .88) 100%);
	z-index: 1;
}

.access__after-body {
	position: relative;
	z-index: 2;
	padding: 36px
}

.access__after-body .h3 {
	font-size: clamp(17px, 1.9vw, 21px);
	margin-bottom: 12px;
	color: #fff
}

.access__after-body p {
	font-size: 14px;
	line-height: 1.9;
	color: rgba(255, 255, 255, .92)
}

@media (max-width:820px) {
	.access__grid {
		grid-template-columns: 1fr
	}

	.access__after {
		min-height: 360px
	}
}

/* ---------- Plans ---------- */
.plans {
	padding: 110px 0;
	background: linear-gradient(180deg, var(--sea) 0%, #0A5E78 100%);
	color: #fff
}

.plans .eyebrow {
	color: #9FE0EA
}

.plans .h2 {
	color: #fff
}

.plans .section-head__lead {
	color: rgba(255, 255, 255, .85);
	font-family: var(--font-num);
	letter-spacing: .1em;
	font-size: 16px
}

.plans__notice {
	text-align: center;
	background: rgba(255, 255, 255, .12);
	border: 1px dashed rgba(255, 255, 255, .5);
	border-radius: 8px;
	padding: 12px 16px;
	font-size: 13px;
	margin: -24px auto 40px;
	max-width: 640px;
}

/* --- モニターキャンペーン --- */
.campaign {
	text-align: center;
	background: rgba(240, 100, 74, .16);
	border: 1px solid rgba(255, 255, 255, .45);
	border-radius: var(--radius);
	padding: 20px 20px 16px;
	margin: -20px auto 44px;
	max-width: 680px
}

.campaign__badge {
	display: inline-block;
	background: var(--coral);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	padding: 5px 16px;
	border-radius: 999px;
	margin-bottom: 12px
}

.campaign__lead {
	font-size: 17px;
	font-weight: 500;
	line-height: 1.6;
	margin-bottom: 10px
}

.campaign__lead em {
	font-family: var(--font-num);
	font-style: normal;
	font-size: 26px;
	font-weight: 600;
	letter-spacing: .02em;
	color: #FFD9A0;
	margin: 0 2px
}

.campaign__term {
	font-family: var(--font-num);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .06em;
	color: #FFD9A0;
	margin-bottom: 12px
}

.campaign__cond {
	font-size: 12.5px;
	line-height: 1.7;
	color: rgba(255, 255, 255, .88);
	text-align: left;
	max-width: 460px;
	margin: 0 auto
}

.plans__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-bottom: 56px
}

.plan {
	background: #fff;
	color: var(--ink);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
	transition: transform .4s var(--ease);
}

.plan:hover {
	transform: translateY(-6px)
}

.plan__photo img {
	aspect-ratio: 16/10;
	object-fit: cover;
	width: 100%
}

.plan__body {
	padding: 28px 26px 26px;
	display: flex;
	flex-direction: column;
	flex: 1
}

.plan__period {
	font-family: var(--font-num);
	font-size: 12px;
	letter-spacing: .2em;
	color: var(--lagoon);
	font-weight: 600
}

.plan__title {
	font-family: var(--font-display);
	font-size: 24px;
	line-height: 1.4;
	color: var(--sea);
	letter-spacing: .06em;
	margin: 6px 0 16px;
	font-weight: 700
}

.plan__inc {
	font-size: 12.5px;
	line-height: 1.75;
	color: var(--ink-soft);
	margin-bottom: 8px
}

.plan__note {
	font-size: 11.5px;
	line-height: 1.7;
	color: var(--ink-soft);
	background: var(--sand);
	border-left: 2px solid var(--line);
	padding: 7px 10px;
	border-radius: 0 4px 4px 0;
	margin-bottom: 18px
}

.plan__inc span {
	display: block;
	font-weight: 700;
	color: var(--sea);
	font-size: 12px;
	letter-spacing: .1em;
	margin-bottom: 2px
}

.price {
	margin-bottom: 22px;
	flex: 1
}

.price__season {
	font-family: var(--font-num);
	font-size: 12px;
	letter-spacing: .14em;
	color: var(--sea);
	font-weight: 600;
	background: var(--lagoon-light);
	display: inline-block;
	padding: 2px 10px;
	border-radius: 4px;
	margin: 10px 0 8px;
}

.price__list div {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 8px 0;
	border-bottom: 1px solid var(--line)
}

.price__list dt {
	font-size: 14px;
	font-weight: 500
}

.price__list dt small {
	display: block;
	font-size: 11px;
	color: var(--ink-soft);
	font-weight: 400
}

.price__list dd {
	font-size: 14px;
	white-space: nowrap;
	text-align: right
}

.price__was {
	display: block;
	font-family: var(--font-num);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .02em;
	color: #98A4AC;
	text-decoration: line-through;
	text-decoration-thickness: 1px;
	line-height: 1.3
}

.price__list dd em {
	font-family: var(--font-num);
	font-style: normal;
	font-size: 24px;
	font-weight: 600;
	color: var(--coral);
	letter-spacing: .02em;
	margin-right: 2px
}

.price__na dt,
.price__na dd {
	color: #9AA7AF;
	font-size: 12px
}

.plans .btn--outline {
	border-color: #fff;
	color: #fff
}

.plans .btn--outline:hover {
	background: #fff;
	color: var(--sea)
}

@media (max-width:960px) {
	.plans__grid {
		grid-template-columns: 1fr;
		max-width: 520px;
		margin-left: auto;
		margin-right: auto
	}
}

/* ---------- Recommend ---------- */
.recommend {
	padding: 100px 0;
	background: var(--sand)
}

.recommend__inner {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 56px;
	align-items: center
}

.checklist {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 24px
}

.checklist li {
	position: relative;
	padding: 14px 16px 14px 44px;
	background: #fff;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 500;
	border: 1px solid var(--sand-deep);
}

.checklist li::before {
	content: "✓";
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--lagoon);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width:820px) {
	.recommend__inner {
		grid-template-columns: 1fr;
		gap: 32px
	}

	.checklist {
		grid-template-columns: 1fr
	}
}

/* ---------- Closing ---------- */
.closing {
	position: relative;
	padding: 150px 0;
	color: #fff;
	text-align: center;
	overflow: hidden
}

.closing__bg,
.closing__bg img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover
}

.closing__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(6, 70, 95, .55), rgba(6, 70, 95, .75))
}

.closing__inner {
	position: relative;
	z-index: 1;
	max-width: 760px
}

.closing p {
	font-family: var(--font-display);
	font-size: clamp(16px, 2vw, 20px);
	line-height: 2.2;
	letter-spacing: .1em;
	margin-bottom: 26px
}

.closing__pre {
	font-size: clamp(20px, 2.8vw, 28px) !important;
	font-weight: 600
}

.closing__strong {
	font-weight: 700;
	font-size: clamp(20px, 2.6vw, 26px) !important
}

.closing__title {
	font-size: clamp(28px, 4.4vw, 46px) !important;
	font-weight: 700;
	line-height: 1.5 !important;
	margin: 36px 0 40px !important;
	text-shadow: 0 4px 30px rgba(0, 30, 50, .4)
}

.closing__cta {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap
}

/* ---------- Charter ---------- */
.charter {
	padding: 110px 0 130px;
	background: #fff
}

.charter__pre {
	font-family: var(--font-display);
	font-size: 16px;
	letter-spacing: .14em;
	color: var(--ink-soft);
	margin-bottom: 8px
}

.charter__plan {
	display: block;
	font-size: .72em;
	margin-top: 8px;
	color: var(--lagoon);
	letter-spacing: .1em
}

.charter__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center
}

.charter__photos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px
}

.charter__photos img {
	border-radius: var(--radius);
	aspect-ratio: 4/5;
	object-fit: cover;
	box-shadow: var(--shadow)
}

.charter__photos img:last-child {
	margin-top: 40px
}

.charter__catch {
	font-family: var(--font-display);
	font-size: clamp(20px, 2.4vw, 24px);
	font-weight: 700;
	color: var(--sea);
	letter-spacing: .06em;
	line-height: 1.7;
	margin-bottom: 24px
}

.charter__text p {
	margin-bottom: 18px
}

.charter__contact {
	margin-top: 28px;
	background: var(--lagoon-light);
	border-radius: var(--radius);
	padding: 22px 26px
}

.charter__contact-head {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .16em;
	color: var(--sea);
	margin-bottom: 14px
}

.charter__tel div {
	display: flex;
	align-items: baseline;
	gap: 14px;
	flex-wrap: wrap
}

.charter__tel div + div {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid rgba(11, 111, 140, .15)
}

.charter__tel dt {
	font-size: 12.5px;
	font-weight: 500;
	color: var(--ink-soft);
	letter-spacing: .06em;
	min-width: 104px
}

.charter__tel dd a {
	font-family: var(--font-num);
	font-size: 24px;
	font-weight: 600;
	letter-spacing: .04em;
	color: var(--sea);
	text-decoration: none;
	white-space: nowrap
}

.charter__tel dd a:hover {
	text-decoration: underline
}

@media (max-width:820px) {
	.charter__grid {
		grid-template-columns: 1fr;
		gap: 40px
	}

	.charter__contact {
		padding: 20px
	}

	.charter__tel div {
		gap: 8px
	}

	.charter__tel dt {
		min-width: 0;
		width: 100%
	}

	.charter__tel dd a {
		font-size: 22px
	}
}

/* ---------- Footer ---------- */
.site-footer {
	background: var(--ink);
	color: rgba(255, 255, 255, .75);
	padding: 48px 0 110px;
	text-align: center;
	font-size: 13px
}

.site-footer__brand {
	font-family: var(--font-display);
	font-size: 18px;
	color: #fff;
	letter-spacing: .14em;
	margin-bottom: 12px
}

.site-footer__links a {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 3px
}

.site-footer__copy {
	margin-top: 16px;
	font-family: var(--font-num);
	letter-spacing: .1em;
	opacity: .6
}

/* ---------- Fixed CTA ---------- */
.fixed-cta {
	position: fixed;
	left: 50%;
	bottom: 16px;
	transform: translate(-50%, 120%);
	z-index: 90;
	background: var(--coral);
	color: #fff;
	border-radius: 999px;
	padding: 12px 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1.3;
	box-shadow: 0 12px 30px rgba(240, 100, 74, .45);
	transition: transform .5s var(--ease), background .3s;
	white-space: nowrap;
}

.fixed-cta.is-visible {
	transform: translate(-50%, 0)
}

.fixed-cta:hover {
	background: var(--coral-dark)
}

.fixed-cta__label {
	font-size: 10px;
	letter-spacing: .2em;
	opacity: .9
}

.fixed-cta__main {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .06em
}

@media (max-width:640px) {
	.fixed-cta {
		left: 12px;
		right: 12px;
		transform: translate(0, 120%);
		border-radius: 14px;
		padding: 12px
	}

	.fixed-cta.is-visible {
		transform: translate(0, 0)
	}
}

/* ---------- Reveal ---------- */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .9s var(--ease), transform .9s var(--ease)
}

.reveal.is-inview {
	opacity: 1;
	transform: none
}

@media (prefers-reduced-motion:reduce) {

	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important
	}

	.reveal {
		opacity: 1;
		transform: none
	}

	.hero__eyebrow,
	.hero__title,
	.hero__sub,
	.hero__name,
	.hero .btn {
		opacity: 1
	}
}

/* ---------- Mobile fine-tune ---------- */
@media (max-width:640px) {
	.hero__title {
		font-size: 32px;
		letter-spacing: .06em
	}

	.hero__inner {
		padding: 120px 20px 110px
	}

	.lead p br,
	.about__text p br,
	.closing p br:not(.closing__title br) {
		display: none
	}

	.btn {
		padding: 14px 26px;
		font-size: 14px;
		letter-spacing: .03em
	}

	.btn--lg {
		padding: 16px 32px;
		font-size: 15px
	}

	.about__photo figcaption {
		position: static;
		display: inline-block;
		margin-top: 12px;
		border-radius: 4px
	}

	.h2 {
		font-size: 26px
	}

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

	.timetable td {
		font-size: 22px
	}

	.timetable th,
	.timetable td {
		padding: 12px 4px
	}

	.timetable tbody th {
		width: 48px
	}

	.timetable td small {
		font-size: 10px;
		letter-spacing: 0
	}
}