/* ============================================================
   Ringchan Tour Overview  –  style.css
   #096f30 green | #ffbe0f gold | #2c97de blue
   Font: Cormorant Garamond
   ============================================================ */

:root {
	--rto-green  : #096f30;
	--rto-gold   : #ffbe0f;
	--rto-blue   : #2c97de;
	--rto-dark   : #1a2740;
	--rto-text   : #3d3d3d;
	--rto-muted  : #777;
	--rto-border : #e6e2d8;
	--rto-bg     : #faf9f6;
	--rto-white  : #ffffff;
	--rto-font   : 'Cormorant Garamond', Georgia, serif;
	--rto-radius : 8px;
}

/* ── Wrapper ── */
.rto-wrap {
	font-family: var(--rto-font);
	color: var(--rto-text);
	max-width: 1100px;
	margin: 0 auto;
	padding: 52px 24px 80px;
}

/* ── Top row: content + card ── */
.rto-top {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 48px;
	align-items: start;
	margin-bottom: 52px;
}

.rto-left { min-width: 0; }

/* ── Sections ── */
.rto-section { margin-bottom: 52px; }
.rto-section:last-child { margin-bottom: 0; }

/* Overview heading */
.rto-overview-title {
	font-size: clamp(28px, 3.5vw, 40px);
	font-weight: 700;
	font-style: italic;
	color: var(--rto-gold);
	margin: 0 0 10px;
	line-height: 1.05;
}

.rto-title-rule {
	width: 44px;
	height: 3px;
	background: var(--rto-gold);
	border-radius: 2px;
	margin-bottom: 18px;
}

.rto-overview-text {
	font-size: 16px;
	line-height: 1.85;
	color: var(--rto-muted);
	margin: 0;
}

/* Sub-headings */
.rto-sub-title {
	font-size: clamp(18px, 2.2vw, 24px);
	font-weight: 600;
	color: var(--rto-dark);
	margin: 0 0 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--rto-border);
}

/* ── Highlights ── */
.rto-highlights {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 9px 20px;
}

.rto-hi-item {
	display: flex;
	align-items: center;
	gap: 9px;
	background: var(--rto-bg);
	border: 1px solid var(--rto-border);
	border-radius: 6px;
	padding: 9px 13px;
	font-size: 14.5px;
	color: var(--rto-dark);
	line-height: 1.4;
}

.rto-hi-icon { font-size: 16px; flex-shrink: 0; }

/* ── Booking card ── */
.rto-card-wrap { min-width: 0; }

.rto-card {
	background: var(--rto-white);
	border: 1px solid var(--rto-border);
	border-radius: var(--rto-radius);
	padding: 26px 22px;
	box-shadow: 0 4px 20px rgba(0,0,0,.07);
}

.rto-card__from {
	font-size: 11px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--rto-muted);
	margin: 0 0 4px;
}

.rto-card__price {
	font-size: 28px;
	font-weight: 700;
	color: var(--rto-dark);
	line-height: 1.1;
	margin-bottom: 10px;
}

.rto-card__note {
	font-size: 13px;
	line-height: 1.65;
	color: var(--rto-muted);
	margin: 0 0 18px;
}

/* Buttons */
.rto-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 100%;
	padding: 11px 14px;
	border-radius: 5px;
	font-family: var(--rto-font);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	box-sizing: border-box;
	margin-bottom: 9px;
	transition: opacity .18s, transform .14s;
}

.rto-btn:last-of-type { margin-bottom: 0; }
.rto-btn:hover { opacity: .84; transform: translateY(-1px); }

.rto-btn--wa  { background: var(--rto-green); color: #fff; }
.rto-btn--enq { background: var(--rto-gold);  color: #111; }

.rto-card__divider {
	height: 1px;
	background: var(--rto-border);
	margin: 18px 0;
}

.rto-card__guide-label {
	font-size: 10px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--rto-muted);
	font-weight: 600;
	margin: 0 0 10px;
}

.rto-card__guide {
	display: flex;
	align-items: center;
	gap: 11px;
}

.rto-card__avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid var(--rto-gold);
	flex-shrink: 0;
}

.rto-card__avatar img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rto-card__guide-name {
	display: block;
	font-size: 15px;
	font-weight: 600;
	color: var(--rto-dark);
}

.rto-card__guide-role {
	display: block;
	font-size: 10px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--rto-muted);
	margin-top: 2px;
}

/* ── Timeline ── */
.rto-timeline { display: flex; flex-direction: column; }

.rto-day { display: flex; gap: 18px; }

.rto-day__track {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
	width: 16px;
}

.rto-day__dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--rto-gold);
	border: 2px solid #fff;
	box-shadow: 0 0 0 2px var(--rto-gold);
	flex-shrink: 0;
	margin-top: 3px;
}

.rto-day__line {
	flex: 1;
	width: 2px;
	background: var(--rto-border);
	margin: 5px 0;
}

.rto-day:last-child .rto-day__line { display: none; }

.rto-day__content {
	padding-bottom: 30px;
	flex: 1;
	min-width: 0;
}

.rto-day:last-child .rto-day__content { padding-bottom: 0; }

.rto-day__badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .13em;
	text-transform: uppercase;
	color: var(--rto-gold);
	background: #fff9e6;
	border: 1px solid #f5d97a;
	border-radius: 20px;
	padding: 2px 10px;
	margin-bottom: 7px;
}

.rto-day__title {
	font-size: 17px;
	font-weight: 600;
	color: var(--rto-dark);
	margin: 0 0 9px;
}

.rto-day__list {
	margin: 0;
	padding-left: 18px;
	list-style: disc;
}

.rto-day__list li {
	font-size: 14px;
	line-height: 1.75;
	color: var(--rto-muted);
	margin-bottom: 2px;
}

/* ── Inclusions / Exclusions ── */
.rto-ie {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}

.rto-ie__title {
	font-size: 19px;
	font-weight: 700;
	margin: 0 0 14px;
}

.rto-ie__title--inc { color: var(--rto-green); }
.rto-ie__title--exc { color: #c0392b; }

.rto-ie__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.rto-ie__list li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-size: 14.5px;
	line-height: 1.5;
	color: var(--rto-text);
}

.rto-ie__dot { font-size: 9px; margin-top: 4px; flex-shrink: 0; }
.rto-ie__dot--inc { color: var(--rto-green); }
.rto-ie__dot--exc { color: #c0392b; }

/* ── Pricing ── */
.rto-pricing {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-bottom: 10px;
}

.rto-pkg {
	position: relative;
	border: 1px solid var(--rto-border);
	border-radius: var(--rto-radius);
	padding: 26px 18px 22px;
	text-align: center;
	background: var(--rto-white);
	transition: box-shadow .2s;
}

.rto-pkg:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); }

.rto-pkg--popular {
	border: 2px solid var(--rto-gold);
	background: #fffdf4;
}

.rto-pkg__badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--rto-dark);
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 3px 11px;
	border-radius: 20px;
	white-space: nowrap;
}

.rto-pkg__name {
	font-size: 16px;
	font-weight: 600;
	color: var(--rto-dark);
	margin: 0 0 9px;
}

.rto-pkg__price {
	font-size: 24px;
	font-weight: 700;
	color: var(--rto-gold);
	line-height: 1.1;
	margin-bottom: 2px;
}

.rto-pkg--popular .rto-pkg__price { font-size: 28px; }

.rto-pkg__per {
	font-size: 11px;
	color: var(--rto-muted);
	margin-bottom: 16px;
}

.rto-pkg__features {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.rto-pkg__features li {
	font-size: 13.5px;
	color: var(--rto-text);
	display: flex;
	align-items: center;
	gap: 7px;
}

.rto-pkg__features li span {
	color: var(--rto-green);
	font-weight: 700;
	font-size: 12px;
}

.rto-pricing-note {
	font-size: 12px;
	font-style: italic;
	color: var(--rto-muted);
	text-align: center;
	margin: 0;
}

/* ── Responsive ── */
@media (max-width: 860px) {
	.rto-top {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.rto-card-wrap { max-width: 420px; }
}

@media (max-width: 600px) {
	.rto-wrap { padding: 36px 16px 56px; }
	.rto-highlights { grid-template-columns: 1fr; }
	.rto-ie { grid-template-columns: 1fr; gap: 28px; }
	.rto-pricing { grid-template-columns: 1fr; max-width: 300px; margin-left: auto; margin-right: auto; }
}
