/* ============================================
   THANKSGIVING IN CALIFORNIA — PROGRAM PAGE
   Structure mirrors css/ningen-dock.css.
   Accent is autumn amber, following the
   per-program accent precedent set by
   css/japan-trip.css (#a8432f).
   ============================================ */

.thanksgiving-page {
	background: #fff;
	color: #7f858e;
}

.thanksgiving-page a {
	color: #284252;
	text-decoration: none;
	border-bottom: 1px dotted #284252;
	font-weight: 600;
}

.thanksgiving-page a:hover {
	border-bottom-color: transparent;
}

/* ---------- Hero ---------- */

.thanksgiving-page .tg-hero {
	position: relative;
	min-height: 100vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	display: table;
	width: 100%;
	text-align: center;
}

.thanksgiving-page .tg-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(58, 34, 18, 0.50), rgba(38, 24, 14, 0.72));
}

.thanksgiving-page .tg-hero-content {
	position: relative;
	z-index: 1;
	display: table-cell;
	vertical-align: middle;
	padding: 0 100px;
}

.thanksgiving-page .tg-hero-eyebrow {
	color: #f0b46a;
	font-size: 12px;
	line-height: 18px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	margin: 0 0 20px;
}

.thanksgiving-page .tg-hero h1 {
	color: #fff;
	font-size: 62px;
	line-height: 64px;
	font-weight: 100;
	letter-spacing: -0.01em;
	margin: 0 0 20px;
}

.thanksgiving-page .tg-hero-dates {
	color: #fff !important;
	font-size: 15px !important;
	line-height: 26px !important;
	font-weight: 600 !important;
	letter-spacing: 0.14em !important;
	text-transform: uppercase;
	margin: 0 auto 22px !important;
}

.thanksgiving-page .tg-hero p {
	color: rgba(255,255,255,0.80);
	font-size: 18px;
	line-height: 32px;
	font-weight: 300;
	letter-spacing: 0.06em;
	max-width: 780px;
	margin: 0 auto;
}

.thanksgiving-page .tg-hero-buttons {
	justify-content: center;
	margin-top: 34px;
}

/* ---------- Quick facts bar ---------- */

.thanksgiving-page .tg-facts {
	background: #284252;
	padding: 34px 48px;
}

.thanksgiving-page .tg-facts-inner {
	max-width: 1160px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.thanksgiving-page .tg-fact {
	flex: 1 1 auto;
}

.thanksgiving-page .tg-fact-label {
	color: #9db3c1 !important;
	font-size: 11px !important;
	line-height: 16px !important;
	font-weight: 600 !important;
	letter-spacing: 0.18em !important;
	text-transform: uppercase;
	margin: 0 0 6px !important;
}

.thanksgiving-page .tg-fact-value {
	color: #fff !important;
	font-size: 17px !important;
	line-height: 24px !important;
	font-weight: 300 !important;
	letter-spacing: 0.02em !important;
	margin: 0 !important;
}

.thanksgiving-page .tg-fact-price {
	border-left: 1px solid rgba(255,255,255,0.18);
	padding-left: 28px;
}

/* ---------- Alternating text / image rows ---------- */

.thanksgiving-page .tg-row {
	display: flex;
	width: 100%;
	min-height: 544px;
}

.thanksgiving-page .tg-row-reverse .tg-text {
	order: 2;
}

.thanksgiving-page .tg-row-reverse .tg-carousel {
	order: 1;
}

.thanksgiving-page .tg-text,
.thanksgiving-page .tg-carousel {
	width: 50%;
}

.thanksgiving-page .tg-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 70px 80px;
	background: #fff;
}

.thanksgiving-page .tg-text h2,
.thanksgiving-page .tg-highlights-section h2,
.thanksgiving-page .tg-journey-section h2,
.thanksgiving-page .tg-included-section h2,
.thanksgiving-page .tg-cta-section h2 {
	color: #000;
	font-size: 38px;
	line-height: 42px;
	font-weight: 300;
	letter-spacing: -0.01em;
	margin: 0 0 22px;
}

.thanksgiving-page .tg-text p,
.thanksgiving-page .tg-highlights-section p,
.thanksgiving-page .tg-journey-section p,
.thanksgiving-page .tg-included-section p,
.thanksgiving-page .tg-cta-section p {
	color: #7f858e;
	font-size: 15px;
	line-height: 28px;
	font-weight: 400;
	letter-spacing: 0.05em;
	margin: 0 0 16px;
}

.thanksgiving-page .tg-text strong {
	color: #565d66;
	font-weight: 600;
}

/* ---------- Carousel ---------- */

.thanksgiving-page .tg-carousel {
	position: relative;
	width: 50%;
	min-height: 544px;
	overflow: hidden;
	background: #2c2115;
}

.thanksgiving-page .tg-carousel-viewport {
	position: absolute;
	inset: 0;
}

.thanksgiving-page .tg-slide {
	position: absolute;
	inset: 0;
	margin: 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 0.55s ease;
	pointer-events: none;
}

.thanksgiving-page .tg-slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

.thanksgiving-page .tg-slide figcaption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 54px 28px 22px;
	background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.62));
	color: #fff;
	font-size: 13px;
	line-height: 20px;
	font-weight: 400;
	letter-spacing: 0.06em;
}

/* Arrows */
.thanksgiving-page .tg-carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255,255,255,0.86);
	color: #2c2115;
	font-size: 26px;
	line-height: 40px;
	text-align: center;
	cursor: pointer;
	opacity: 0;
	transition: opacity 0.25s ease, background 0.2s ease;
}

.thanksgiving-page .tg-carousel:hover .tg-carousel-arrow,
.thanksgiving-page .tg-carousel-arrow:focus {
	opacity: 1;
}

.thanksgiving-page .tg-carousel-arrow:hover {
	background: #fff;
}

.thanksgiving-page .tg-carousel-prev { left: 16px; }
.thanksgiving-page .tg-carousel-next { right: 16px; }

/* Dots */
.thanksgiving-page .tg-carousel-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 16px;
	z-index: 2;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.thanksgiving-page .tg-carousel-dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255,255,255,0.45);
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.thanksgiving-page .tg-carousel-dot:hover {
	background: rgba(255,255,255,0.75);
}

.thanksgiving-page .tg-carousel-dot.is-active {
	background: #f5a640;
	transform: scale(1.35);
}

/* No JS: show the first slide, hide the controls */
.thanksgiving-page .tg-carousel:not(.tg-js) .tg-slide:first-child {
	opacity: 1;
}

/* ---------- Buttons ---------- */

.thanksgiving-page .tg-button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
}

.thanksgiving-page .tg-button-row-center {
	justify-content: center;
}

.thanksgiving-page .tg-button {
	display: inline-block;
	border: none;
	padding: 20px 30px;
	font-size: 14px;
	line-height: 18px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	text-decoration: none;
}

.thanksgiving-page .tg-button-amber {
	background: #c2661f;
	color: #fff;
}

.thanksgiving-page .tg-button-dark {
	background: #284252;
	color: #fff;
}

.thanksgiving-page .tg-button-ghost {
	background: transparent;
	color: #fff;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,0.55);
}

.thanksgiving-page .tg-button:hover {
	background: #8d4715;
	color: #fff;
	border: none;
	box-shadow: none;
}

/* ---------- Highlights grid ---------- */

.thanksgiving-page .tg-highlights-section {
	background: #faf5ed;
	padding: 84px 48px;
	text-align: center;
}

.thanksgiving-page .tg-section-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.thanksgiving-page .tg-section-intro {
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}

.thanksgiving-page .tg-highlight-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin: 46px 0 42px;
	text-align: left;
}

.thanksgiving-page .tg-highlight-card {
	background: #fff;
	border: 1px solid #ece2d4;
	box-shadow: 0 0 10px rgba(146,120,96,0.12);
	padding: 28px 26px;
	border-top: 3px solid #c2661f;
}

.thanksgiving-page .tg-highlight-card h3 {
	color: #000;
	font-size: 24px;
	line-height: 28px;
	font-weight: 300;
	letter-spacing: 0;
	margin: 0 0 10px;
}

.thanksgiving-page .tg-highlight-card p {
	font-size: 13px;
	line-height: 24px;
	margin: 0;
}

.thanksgiving-page .tg-note {
	max-width: 760px;
	margin: 0 auto;
	font-style: italic;
}

/* ---------- Itinerary timeline ---------- */

.thanksgiving-page .tg-journey-section {
	padding: 86px 48px;
	background: #fff;
}

.thanksgiving-page .tg-journey-inner {
	max-width: 860px;
	margin: 0 auto;
}

.thanksgiving-page .tg-journey-section h2,
.thanksgiving-page .tg-journey-subtitle {
	text-align: center;
}

.thanksgiving-page .tg-journey-subtitle {
	margin-bottom: 52px;
}

.thanksgiving-page .tg-timeline {
	position: relative;
	padding-left: 38px;
	border-left: 1px solid #e3d8c8;
}

.thanksgiving-page .tg-timeline-day {
	position: relative;
	margin-bottom: 42px;
}

.thanksgiving-page .tg-timeline-day:last-child {
	margin-bottom: 0;
}

.thanksgiving-page .tg-timeline-day:before {
	content: "";
	position: absolute;
	left: -44px;
	top: 8px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #c2661f;
}

/* Thanksgiving Day itself gets a larger marker and a tinted panel */
.thanksgiving-page .tg-timeline-day-feature {
	background: #faf5ed;
	border-left: 3px solid #c2661f;
	padding: 24px 26px;
	margin-left: -26px;
}

.thanksgiving-page .tg-timeline-day-feature:before {
	left: -21px;
	top: 30px;
	width: 16px;
	height: 16px;
	box-shadow: 0 0 0 4px #fff;
}

.thanksgiving-page .tg-day-label {
	color: #a2531a !important;
	font-size: 11px !important;
	line-height: 18px !important;
	font-weight: 600 !important;
	letter-spacing: 0.18em !important;
	text-transform: uppercase;
	margin-bottom: 5px !important;
}

.thanksgiving-page .tg-timeline-day h3 {
	color: #000;
	font-size: 26px;
	line-height: 30px;
	font-weight: 300;
	letter-spacing: 0;
	margin: 0 0 8px;
}

/* ---------- What's included ---------- */

.thanksgiving-page .tg-included-section {
	background: #f0f1f2;
	padding: 84px 48px;
	text-align: center;
}

.thanksgiving-page .tg-included-columns {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 32px;
	margin-top: 46px;
	text-align: left;
}

.thanksgiving-page .tg-included-col {
	background: #fff;
	border: 1px solid #e6e8ea;
	padding: 34px 32px;
}

.thanksgiving-page .tg-included-col h3 {
	color: #000;
	font-size: 22px;
	line-height: 26px;
	font-weight: 300;
	margin: 0 0 18px;
}

.thanksgiving-page .tg-included-list,
.thanksgiving-page .tg-excluded-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.thanksgiving-page .tg-included-list li,
.thanksgiving-page .tg-excluded-list li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 12px;
	color: #7f858e;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.03em;
}

.thanksgiving-page .tg-included-list li:before {
	content: "\2713";
	position: absolute;
	left: 0;
	top: 0;
	color: #c2661f;
	font-weight: 700;
}

.thanksgiving-page .tg-excluded-list li:before {
	content: "\2014";
	position: absolute;
	left: 0;
	top: 0;
	color: #b6bcc2;
	font-weight: 700;
}

.thanksgiving-page .tg-included-note {
	margin-top: 18px !important;
	padding-top: 16px;
	border-top: 1px solid #e6e8ea;
	font-size: 13px !important;
	line-height: 22px !important;
	font-style: italic;
}

/* ---------- Flexible scheduling band ---------- */

.thanksgiving-page .tg-flex-section {
	background: #284252;
	padding: 76px 48px;
	text-align: center;
}

.thanksgiving-page .tg-flex-inner {
	max-width: 700px;
	margin: 0 auto;
}

.thanksgiving-page .tg-flex-eyebrow {
	color: #f0b46a;
	font-size: 12px;
	line-height: 18px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	margin: 0 0 16px;
}

.thanksgiving-page .tg-flex-heading {
	color: #fff;
	font-size: 40px;
	line-height: 46px;
	font-weight: 300;
	margin: 0 0 18px;
}

.thanksgiving-page .tg-flex-copy {
	color: rgba(255,255,255,0.72);
	font-size: 15px;
	line-height: 28px;
	font-weight: 300;
	letter-spacing: 0.04em;
	margin: 0;
}

/* ---------- CTA ---------- */

.thanksgiving-page .tg-cta-section {
	background: #faf5ed;
	padding: 72px 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	border-top: 1px solid #ece2d4;
	border-bottom: 1px solid #ece2d4;
}

.thanksgiving-page .tg-cta-copy {
	max-width: 720px;
}

.thanksgiving-page .tg-cta-section p {
	margin-bottom: 0;
}

/* ---------- Responsive ---------- */

@media screen and (max-width: 1024px) {
	.thanksgiving-page .tg-text {
		padding: 60px 55px;
	}

	.thanksgiving-page .tg-highlight-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.thanksgiving-page .tg-facts-inner {
		gap: 20px;
	}

	.thanksgiving-page .tg-fact {
		flex: 1 1 40%;
	}

	.thanksgiving-page .tg-fact-price {
		border-left: none;
		padding-left: 0;
	}
}

@media screen and (max-width: 860px) {
	.thanksgiving-page .tg-hero {
		min-height: 78vh;
	}

	.thanksgiving-page .tg-hero-content {
		padding: 0 34px;
	}

	.thanksgiving-page .tg-hero h1 {
		font-size: 40px;
		line-height: 46px;
	}

	.thanksgiving-page .tg-hero-dates {
		font-size: 13px !important;
		letter-spacing: 0.08em !important;
	}

	.thanksgiving-page .tg-hero p {
		font-size: 14px;
		line-height: 24px;
		letter-spacing: 0.04em;
	}

	.thanksgiving-page .tg-facts-inner {
		display: block;
	}

	.thanksgiving-page .tg-fact {
		margin-bottom: 20px;
	}

	.thanksgiving-page .tg-fact:last-child {
		margin-bottom: 0;
	}

	.thanksgiving-page .tg-row {
		display: block;
		min-height: 0;
	}

	.thanksgiving-page .tg-row-reverse .tg-text,
	.thanksgiving-page .tg-row-reverse .tg-carousel {
		order: initial;
	}

	.thanksgiving-page .tg-text,
	.thanksgiving-page .tg-carousel {
		width: 100%;
	}

	.thanksgiving-page .tg-carousel {
		min-height: 300px;
		height: 62vw;
		max-height: 420px;
	}

	/* arrows always visible on touch, where there is no hover */
	.thanksgiving-page .tg-carousel-arrow {
		opacity: 1;
		width: 38px;
		height: 38px;
		font-size: 22px;
		line-height: 34px;
	}

	.thanksgiving-page .tg-slide figcaption {
		padding: 44px 20px 18px;
		font-size: 12px;
	}

	.thanksgiving-page .tg-text {
		padding: 54px 40px;
	}

	.thanksgiving-page .tg-text h2,
	.thanksgiving-page .tg-highlights-section h2,
	.thanksgiving-page .tg-journey-section h2,
	.thanksgiving-page .tg-included-section h2,
	.thanksgiving-page .tg-cta-section h2 {
		font-size: 28px;
		line-height: 34px;
	}

	.thanksgiving-page .tg-highlights-section,
	.thanksgiving-page .tg-journey-section,
	.thanksgiving-page .tg-included-section,
	.thanksgiving-page .tg-flex-section,
	.thanksgiving-page .tg-cta-section {
		padding: 56px 34px;
	}

	.thanksgiving-page .tg-highlight-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.thanksgiving-page .tg-included-columns {
		grid-template-columns: 1fr;
	}

	.thanksgiving-page .tg-flex-heading {
		font-size: 30px;
		line-height: 36px;
	}

	.thanksgiving-page .tg-cta-section {
		display: block;
		text-align: center;
	}

	.thanksgiving-page .tg-cta-section .tg-button {
		margin-top: 26px;
	}
}

@media screen and (max-width: 480px) {
	.thanksgiving-page .tg-text,
	.thanksgiving-page .tg-highlights-section,
	.thanksgiving-page .tg-journey-section,
	.thanksgiving-page .tg-included-section,
	.thanksgiving-page .tg-flex-section,
	.thanksgiving-page .tg-cta-section {
		padding-left: 26px;
		padding-right: 26px;
	}

	.thanksgiving-page .tg-button-row {
		display: block;
	}

	.thanksgiving-page .tg-button-row .tg-button {
		display: block;
		text-align: center;
		margin-bottom: 12px;
	}

	.thanksgiving-page .tg-timeline-day-feature {
		margin-left: -20px;
		padding: 20px;
	}
}


/* ============================================
   THANKSGIVING — FAQ SECTION
   ============================================ */
.tg-faq-section {
	background: #faf5ed;
	padding: 90px 20px;
}

.tg-faq-inner {
	max-width: 860px;
	margin: 0 auto;
}

.tg-faq-section h2 {
	text-align: center;
	font-size: 2.2rem;
	color: #3a2a1c;
	margin: 0 0 16px;
}

.tg-faq-intro {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 50px;
	color: #7a6857;
	font-size: 1.05rem;
	line-height: 1.6;
}

.tg-faq-category {
	font-size: 1.15rem;
	color: #a2531a;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 42px 0 16px;
	padding-bottom: 10px;
	border-bottom: 2px solid #ecdcc6;
}
.tg-faq-category:first-of-type {
	margin-top: 0;
}

.tg-faq-item {
	background: #ffffff;
	border: 1px solid #ece2d4;
	border-radius: 10px;
	margin-bottom: 12px;
	overflow: hidden;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.tg-faq-item[open] {
	border-color: #c2661f;
	box-shadow: 0 4px 18px rgba(194, 102, 31, 0.10);
}

.tg-faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 20px 56px 20px 24px;
	font-size: 1.05rem;
	font-weight: 600;
	color: #3a2a1c;
	position: relative;
	line-height: 1.45;
	user-select: none;
}
.tg-faq-item summary:hover {
	color: #a2531a;
}
.tg-faq-item summary::-webkit-details-marker {
	display: none;
}
.tg-faq-item summary::marker {
	content: "";
}

.tg-faq-item summary::after {
	content: "+";
	position: absolute;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	width: 26px;
	height: 26px;
	line-height: 24px;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 400;
	color: #c2661f;
	border: 1.5px solid #e3cba9;
	border-radius: 50%;
	transition: all 0.2s ease;
}
.tg-faq-item[open] summary::after {
	content: "\2212";
	background: #c2661f;
	color: #ffffff;
	border-color: #c2661f;
}

.tg-faq-a {
	padding: 0 24px 22px;
	color: #5c5147;
	font-size: 1rem;
	line-height: 1.7;
}
.tg-faq-a p {
	margin: 0;
}
.tg-faq-a a {
	color: #a2531a;
	text-decoration: underline;
}

.tg-faq-footer {
	text-align: center;
	margin-top: 50px;
	padding-top: 40px;
	border-top: 1px solid #ecdcc6;
}
.tg-faq-footer p {
	max-width: 560px;
	margin: 0 auto 24px;
	color: #7a6857;
	font-size: 1.05rem;
	line-height: 1.6;
}

@media (max-width: 600px) {
	.tg-faq-section {
		padding: 60px 16px;
	}
	.tg-faq-section h2 {
		font-size: 1.7rem;
	}
	.tg-faq-item summary {
		font-size: 1rem;
		padding: 16px 50px 16px 18px;
	}
	.tg-faq-a {
		padding: 0 18px 18px;
	}
}
