/*
 * Global Cycling Travel homepage template
 * Scoped to .gct-home to avoid changing the active theme header/footer.
 */

.gct-home {
	--gct-navy: #082f52;
	--gct-navy-deep: #05253f;
	--gct-blue: #0788c9;
	--gct-blue-dark: #056ba1;
	--gct-sky: #eaf7fd;
	--gct-teal: #0a9db0;
	--gct-green: #69b834;
	--gct-green-dark: #4d9424;
	--gct-ink: #173044;
	--gct-muted: #5f7383;
	--gct-line: #dce8ef;
	--gct-soft: #f6fafc;
	--gct-white: #fff;
	--gct-shadow: 0 18px 45px rgba(7, 55, 86, .12);
	--gct-shadow-soft: 0 10px 30px rgba(7, 55, 86, .08);
	--gct-radius: 18px;
	--gct-radius-sm: 12px;
	color: var(--gct-ink);
	font-size: 16px;
	line-height: 1.65;
	overflow: hidden;
}

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

.gct-home a { color: inherit; text-decoration: none; }
.gct-home img { max-width: 100%; }
.gct-home h1,
.gct-home h2,
.gct-home h3,
.gct-home p { margin-top: 0; }
.gct-home h1,
.gct-home h2,
.gct-home h3 { color: var(--gct-navy); line-height: 1.18; }
.gct-home h1 { font-size: clamp(2.65rem, 5vw, 5.6rem); letter-spacing: -.045em; margin-bottom: 20px; }
.gct-home h2 { font-size: clamp(2rem, 3.4vw, 3.4rem); letter-spacing: -.035em; margin-bottom: 16px; }
.gct-home h3 { font-size: 1.15rem; letter-spacing: -.018em; }

.gct-shell {
	width: min(1240px, calc(100% - 40px));
	margin-inline: auto;
}

.gct-section { padding: 88px 0; }
.gct-section--soft { background: var(--gct-soft); }
.gct-center { display: flex; justify-content: center; margin-top: 34px; }

.gct-eyebrow {
	margin-bottom: 8px;
	color: var(--gct-blue);
	font-size: .76rem;
	font-weight: 800;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.gct-icon {
	width: 1.25em;
	height: 1.25em;
	flex: 0 0 auto;
}

.gct-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 48px;
	padding: 12px 22px;
	border: 1px solid transparent;
	border-radius: 10px;
	font-size: .95rem;
	font-weight: 800;
	line-height: 1;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.gct-btn:hover { transform: translateY(-2px); }
.gct-btn .gct-icon { width: 18px; height: 18px; }
.gct-btn--primary { color: #fff; background: var(--gct-blue); box-shadow: 0 10px 26px rgba(7, 136, 201, .25); }
.gct-btn--primary:hover { color: #fff; background: var(--gct-blue-dark); }
.gct-btn--light { color: var(--gct-navy); background: #fff; border-color: rgba(255,255,255,.65); }
.gct-btn--light:hover { background: #f2fbff; }
.gct-btn--green { color: #fff; background: var(--gct-green); box-shadow: 0 10px 24px rgba(89, 166, 44, .28); }
.gct-btn--green:hover { color: #fff; background: var(--gct-green-dark); }
.gct-btn--outline { color: var(--gct-blue); background: #fff; border-color: var(--gct-blue); }
.gct-btn--outline:hover { color: #fff; background: var(--gct-blue); }
.gct-btn--ghost { color: var(--gct-blue); background: transparent; border-color: #a9d8ec; }
.gct-btn--ghost:hover { color: #fff; background: var(--gct-blue); border-color: var(--gct-blue); }
.gct-btn--small { min-height: 38px; padding: 9px 14px; font-size: .82rem; }
.gct-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero */
.gct-hero {
	position: relative;
	min-height: 690px;
	background: linear-gradient(135deg, #0a638e, #0a8db0);
	isolation: isolate;
}
.gct-hero__background,
.gct-hero__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}
.gct-hero__background { object-fit: cover; z-index: -3; }
.gct-hero__overlay {
	z-index: -2;
	background:
		linear-gradient(90deg, rgba(2, 35, 61, .88) 0%, rgba(4, 49, 78, .73) 42%, rgba(4, 52, 78, .27) 72%, rgba(4, 52, 78, .18) 100%),
		linear-gradient(0deg, rgba(0, 29, 48, .45), transparent 45%);
}
.gct-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.06fr) minmax(380px, .94fr);
	align-items: center;
	gap: 55px;
	min-height: 570px;
	padding-top: 48px;
	padding-bottom: 105px;
}
.gct-hero__copy { max-width: 700px; }
.gct-hero__copy .gct-eyebrow { color: #89d9f5; }
.gct-hero__copy h1 { color: #fff; text-shadow: 0 4px 28px rgba(0, 24, 42, .35); }
.gct-hero__lead { max-width: 630px; color: rgba(255,255,255,.92); font-size: clamp(1.08rem, 1.6vw, 1.38rem); margin-bottom: 30px; }

.gct-hero-collage { position: relative; min-height: 390px; }
.gct-hero-collage__item {
	position: absolute;
	display: block;
	padding: 8px;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 22px 50px rgba(2, 30, 50, .28);
	transition: transform .25s ease;
}
.gct-hero-collage__item:hover { z-index: 5; transform: rotate(0) scale(1.025); }
.gct-hero-collage__item--1 { width: 58%; top: 0; right: 5%; transform: rotate(4deg); }
.gct-hero-collage__item--2 { width: 53%; left: 2%; top: 135px; transform: rotate(-7deg); }
.gct-hero-collage__item--3 { width: 50%; right: 0; bottom: 0; transform: rotate(6deg); }
.gct-hero-collage__image { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 9px; }

.gct-hero-trust {
	position: absolute;
	left: 50%;
	bottom: 35px;
	transform: translateX(-50%);
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 16px;
	background: rgba(4, 35, 55, .72);
	box-shadow: 0 18px 45px rgba(0, 25, 43, .25);
	backdrop-filter: blur(12px);
	overflow: hidden;
}
.gct-hero-trust > div { display: flex; align-items: center; gap: 13px; min-height: 78px; padding: 14px 22px; color: #fff; }
.gct-hero-trust > div + div { border-left: 1px solid rgba(255,255,255,.16); }
.gct-hero-trust .gct-icon { width: 29px; height: 29px; color: #7dd1f0; }
.gct-hero-trust span { display: flex; flex-direction: column; line-height: 1.35; }
.gct-hero-trust strong { font-size: .91rem; }
.gct-hero-trust small { color: rgba(255,255,255,.72); font-size: .75rem; }

/* Search */
.gct-search-wrap { position: relative; z-index: 6; margin-top: -1px; background: #fff; }
.gct-tour-search {
	display: grid;
	grid-template-columns: 1.15fr .9fr .95fr .9fr auto;
	gap: 12px;
	align-items: end;
	padding: 24px;
	margin-top: -24px;
	border: 1px solid var(--gct-line);
	border-radius: var(--gct-radius);
	background: #fff;
	box-shadow: var(--gct-shadow);
}
.gct-tour-search label { display: block; min-width: 0; }
.gct-tour-search label > span { display: block; margin-bottom: 7px; color: var(--gct-navy); font-size: .76rem; font-weight: 800; }
.gct-tour-search select {
	width: 100%;
	height: 48px;
	padding: 0 38px 0 14px;
	border: 1px solid var(--gct-line);
	border-radius: 9px;
	color: var(--gct-ink);
	background: #fff;
	font: inherit;
	font-size: .9rem;
}
.gct-tour-search select:focus { outline: 3px solid rgba(7,136,201,.15); border-color: var(--gct-blue); }
.gct-search-submit { min-width: 145px; }
.gct-search-reset { grid-column: 1 / -1; justify-self: end; color: var(--gct-blue); font-size: .82rem; font-weight: 800; }

/* Intro and headings */
.gct-intro { padding-top: 72px; padding-bottom: 72px; }
.gct-intro__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.gct-richtext { color: var(--gct-muted); font-size: 1.05rem; }
.gct-richtext > *:last-child { margin-bottom: 0; }
.gct-section-heading { max-width: 760px; margin: 0 auto 38px; text-align: center; }
.gct-section-heading > p:last-child { color: var(--gct-muted); margin-bottom: 0; }
.gct-section-heading--left { max-width: none; margin-inline: 0; text-align: left; }

/* Tour cards */
.gct-tour-grid { display: grid; gap: 18px; }
.gct-tour-grid--six { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.gct-tour-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.gct-tour-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	border: 1px solid var(--gct-line);
	border-radius: var(--gct-radius-sm);
	background: #fff;
	box-shadow: var(--gct-shadow-soft);
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.gct-tour-card:hover { transform: translateY(-5px); border-color: #b8dce9; box-shadow: 0 18px 42px rgba(5, 70, 102, .14); }
.gct-tour-card__media { display: block; overflow: hidden; background: #ddecf3; }
.gct-tour-card__image { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .4s ease; }
.gct-tour-card:hover .gct-tour-card__image { transform: scale(1.045); }
.gct-tour-card__body { display: flex; flex: 1; flex-direction: column; padding: 17px; }
.gct-tour-card__location { display: flex; align-items: center; gap: 5px; margin-bottom: 8px; color: var(--gct-blue); font-size: .72rem; font-weight: 700; }
.gct-tour-card__location .gct-icon { width: 13px; height: 13px; }
.gct-tour-card h3 { margin-bottom: 12px; font-size: .99rem; }
.gct-tour-card h3 a:hover { color: var(--gct-blue); }
.gct-tour-card__summary { margin-bottom: 13px; color: var(--gct-muted); font-size: .9rem; }
.gct-tour-card__meta { display: flex; flex-wrap: wrap; gap: 8px 12px; margin-bottom: 12px; padding-top: 10px; border-top: 1px solid #e8f0f4; color: var(--gct-muted); font-size: .73rem; }
.gct-tour-card__meta span { display: inline-flex; align-items: center; gap: 5px; }
.gct-tour-card__meta .gct-icon { width: 14px; height: 14px; color: var(--gct-blue); }
.gct-tour-card__highlights { margin: 0 0 16px; padding: 0; list-style: none; color: var(--gct-muted); font-size: .75rem; }
.gct-tour-card__highlights li { position: relative; padding-left: 12px; }
.gct-tour-card__highlights li::before { content: ''; position: absolute; left: 0; top: .7em; width: 4px; height: 4px; border-radius: 50%; background: var(--gct-green); }
.gct-tour-card__footer { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 13px; border-top: 1px solid #e8f0f4; }
.gct-tour-card__price { color: var(--gct-green-dark); font-size: .95rem; font-weight: 850; }
.gct-tour-card__price small { color: var(--gct-muted); font-size: .67rem; font-weight: 600; }
.gct-tour-card__price del { color: #8b9aa6; font-size: .74rem; font-weight: 500; }
.gct-tour-card--wide .gct-tour-card__image { aspect-ratio: 16 / 8.5; }
.gct-tour-card--wide .gct-tour-card__body { padding: 22px; }
.gct-tour-card--wide h3 { font-size: 1.25rem; }
.gct-tour-card--wide .gct-tour-card__meta { font-size: .82rem; }
.gct-tour-card--wide .gct-tour-card__highlights { font-size: .83rem; }
.gct-image-placeholder { display: grid; place-items: center; width: 100%; min-height: 180px; color: #6aa6bf; background: linear-gradient(135deg, #d8eef7, #eef8fb); }
.gct-image-placeholder .gct-icon { width: 58px; height: 58px; }
.gct-empty-state { max-width: 650px; margin: 0 auto; padding: 45px; border: 1px solid var(--gct-line); border-radius: var(--gct-radius); background: #fff; text-align: center; box-shadow: var(--gct-shadow-soft); }
.gct-empty-state p { color: var(--gct-muted); }

/* Benefits */
.gct-benefits { padding-top: 76px; padding-bottom: 76px; }
.gct-benefit-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); border-top: 1px solid var(--gct-line); border-bottom: 1px solid var(--gct-line); }
.gct-benefit { padding: 28px 18px; text-align: center; }
.gct-benefit + .gct-benefit { border-left: 1px solid var(--gct-line); }
.gct-benefit .gct-icon { width: 38px; height: 38px; color: var(--gct-blue); margin-bottom: 13px; }
.gct-benefit h3 { margin-bottom: 8px; font-size: .95rem; }
.gct-benefit p { margin-bottom: 0; color: var(--gct-muted); font-size: .78rem; line-height: 1.5; }

/* Destinations */
.gct-destination-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)) .85fr; gap: 18px; }
.gct-destination-card { position: relative; display: flex; min-height: 230px; border-radius: var(--gct-radius-sm); background: #dbeef6; box-shadow: var(--gct-shadow-soft); overflow: hidden; }
.gct-destination-card__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gct-destination-card:hover .gct-destination-card__image { transform: scale(1.05); }
.gct-destination-card__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,34,55,.8), rgba(3,34,55,.04) 70%); }
.gct-destination-card__content { position: relative; z-index: 1; align-self: end; display: flex; flex-direction: column; width: 100%; padding: 20px; color: #fff; }
.gct-destination-card__content strong { font-size: 1.05rem; }
.gct-destination-card__content small { color: rgba(255,255,255,.78); }
.gct-destination-card--advice { flex-direction: column; align-items: flex-start; justify-content: center; gap: 12px; padding: 24px; color: var(--gct-navy); background: var(--gct-sky); }
.gct-destination-card--advice > span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; color: #fff; background: var(--gct-blue); }
.gct-destination-card--advice .gct-icon { width: 25px; height: 25px; }
.gct-destination-card--advice small { color: var(--gct-muted); }
.gct-destination-card--advice b { display: inline-flex; align-items: center; gap: 7px; color: var(--gct-blue); }
.gct-destination-card--advice b .gct-icon { width: 16px; height: 16px; }

/* Process */
.gct-process { background: linear-gradient(135deg, #eef9fd, #fff 50%, #eef8f1); }
.gct-process-grid { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; margin: 0; padding: 0; list-style: none; }
.gct-process-grid::before { content: ''; position: absolute; left: 10%; right: 10%; top: 36px; height: 2px; background: repeating-linear-gradient(90deg, #8dcc54 0 8px, transparent 8px 14px); opacity: .7; }
.gct-process-grid li { position: relative; display: grid; grid-template-columns: auto auto 1fr; align-items: start; gap: 12px; padding: 21px; border: 1px solid rgba(183,218,231,.8); border-radius: var(--gct-radius-sm); background: rgba(255,255,255,.9); box-shadow: var(--gct-shadow-soft); }
.gct-process-grid li > span { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; color: #fff; background: var(--gct-blue); font-size: .8rem; font-weight: 900; }
.gct-process-grid li > .gct-icon { width: 34px; height: 34px; color: var(--gct-blue); }
.gct-process-grid h3 { margin: 0 0 5px; font-size: .95rem; }
.gct-process-grid p { margin: 0; color: var(--gct-muted); font-size: .78rem; }

/* Reviews */
.gct-review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.gct-review-card { padding: 26px; border: 1px solid var(--gct-line); border-radius: var(--gct-radius-sm); background: #fff; box-shadow: var(--gct-shadow-soft); }
.gct-review-card__stars { display: flex; gap: 3px; color: var(--gct-green); }
.gct-review-card__stars .gct-icon { width: 17px; height: 17px; fill: currentColor; }
.gct-review-card blockquote { margin: 18px 0 22px; color: var(--gct-ink); font-size: .96rem; }
.gct-review-card footer { display: flex; align-items: center; gap: 11px; }
.gct-review-card__avatar { border-radius: 50%; }
.gct-review-card footer span { display: flex; flex-direction: column; }
.gct-review-card footer small { color: var(--gct-muted); font-size: .76rem; }

/* FAQ and blog */
.gct-content-pair__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 45px; }
.gct-faq-list { border-top: 1px solid var(--gct-line); }
.gct-faq-list details { border-bottom: 1px solid var(--gct-line); }
.gct-faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 17px 4px; color: var(--gct-navy); font-weight: 800; cursor: pointer; list-style: none; }
.gct-faq-list summary::-webkit-details-marker { display: none; }
.gct-faq-list summary span { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; color: var(--gct-blue); background: var(--gct-sky); font-size: 1.2rem; transition: transform .2s ease; }
.gct-faq-list details[open] summary span { transform: rotate(45deg); }
.gct-faq-list details > div { padding: 0 35px 17px 4px; color: var(--gct-muted); font-size: .92rem; }
.gct-faq-list details > div > *:last-child { margin-bottom: 0; }
.gct-heading-with-link { display: flex; align-items: end; justify-content: space-between; gap: 18px; }
.gct-heading-with-link > a { display: inline-flex; align-items: center; gap: 6px; color: var(--gct-blue); font-size: .83rem; font-weight: 800; white-space: nowrap; }
.gct-heading-with-link .gct-icon { width: 15px; height: 15px; }
.gct-blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.gct-blog-card { border: 1px solid var(--gct-line); border-radius: var(--gct-radius-sm); background: #fff; overflow: hidden; }
.gct-blog-card__media { display: block; overflow: hidden; }
.gct-blog-card__image { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .35s ease; }
.gct-blog-card:hover .gct-blog-card__image { transform: scale(1.045); }
.gct-blog-card__body { padding: 15px; }
.gct-blog-card__category { margin-bottom: 6px; color: var(--gct-blue); font-size: .66rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.gct-blog-card h3 { margin-bottom: 12px; font-size: .92rem; }
.gct-blog-card h3 a:hover { color: var(--gct-blue); }
.gct-blog-card__meta { display: flex; justify-content: space-between; gap: 8px; margin-bottom: 0; color: var(--gct-muted); font-size: .67rem; }

/* Final CTA */
.gct-final-cta { padding: 0 0 70px; background: #fff; }
.gct-final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; padding: 46px 54px; border-radius: 22px; color: #fff; background: linear-gradient(115deg, rgba(4,80,132,.96), rgba(4,142,178,.93)), radial-gradient(circle at 85% 0, rgba(255,255,255,.18), transparent 30%); box-shadow: var(--gct-shadow); }
.gct-final-cta .gct-eyebrow { color: #a9e4f8; }
.gct-final-cta h2 { color: #fff; margin-bottom: 9px; }
.gct-final-cta p { margin-bottom: 0; color: rgba(255,255,255,.83); }
.gct-final-cta .gct-actions { flex: 0 0 auto; }

/* GeneratePress integration: remove the theme content container only on this template. */
body.page-template-page-global-cycling-home {
	overflow-x: clip;
}

body.page-template-page-global-cycling-home #page,
body.page-template-page-global-cycling-home #content,
body.page-template-page-global-cycling-home .site-content,
body.page-template-page-global-cycling-home .content-area,
body.page-template-page-global-cycling-home .site-main,
body.page-template-page-global-cycling-home main.gct-home {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

body.page-template-page-global-cycling-home #content,
body.page-template-page-global-cycling-home .site-content {
	display: block;
}

body.page-template-page-global-cycling-home .content-area {
	float: none;
}

body.page-template-page-global-cycling-home .entry-header,
body.page-template-page-global-cycling-home .page-header,
body.page-template-page-global-cycling-home .widget-area {
	display: none;
}

/* True full-bleed hero, independent of GeneratePress container width. */
body.page-template-page-global-cycling-home .gct-hero {
	left: 50%;
	width: 100vw;
	max-width: none;
	margin-right: -50vw;
	margin-left: -50vw;
}

@media (max-width: 1180px) {
	.gct-tour-grid--six { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.gct-benefit-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.gct-benefit:nth-child(4) { border-left: 0; }
	.gct-benefit:nth-child(-n+3) { border-bottom: 1px solid var(--gct-line); }
	.gct-destination-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.gct-destination-card--advice { grid-column: span 2; }
	.gct-tour-search { grid-template-columns: repeat(2, 1fr) auto; }
	.gct-search-submit { grid-row: span 2; align-self: stretch; height: auto; }
}

@media (max-width: 960px) {
	.gct-section { padding: 68px 0; }
	.gct-hero { min-height: auto; }
	.gct-hero__inner { grid-template-columns: 1fr; min-height: 700px; padding-top: 90px; padding-bottom: 190px; }
	.gct-hero__copy { max-width: 680px; }
	.gct-hero-collage { position: absolute; right: 24px; bottom: 128px; width: 40%; min-height: 250px; opacity: .9; }
	.gct-hero-trust { bottom: 28px; grid-template-columns: repeat(2, 1fr); }
	.gct-hero-trust > div:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.16); }
	.gct-hero-trust > div:nth-child(4) { border-top: 1px solid rgba(255,255,255,.16); }
	.gct-intro__inner,
	.gct-content-pair__grid { grid-template-columns: 1fr; gap: 35px; }
	.gct-tour-grid--three { grid-template-columns: 1fr; }
	.gct-tour-card--wide { display: grid; grid-template-columns: .9fr 1.1fr; }
	.gct-tour-card--wide .gct-tour-card__image { height: 100%; aspect-ratio: auto; }
	.gct-destination-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gct-destination-card--advice { grid-column: auto; }
	.gct-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gct-process-grid::before { display: none; }
	.gct-final-cta__inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 720px) {
	.gct-shell { width: min(100% - 28px, 1240px); }
	.gct-home h1 { font-size: clamp(2.45rem, 12vw, 4rem); }
	.gct-home h2 { font-size: clamp(1.75rem, 8vw, 2.5rem); }
	.gct-hero__inner { min-height: 655px; padding-top: 70px; padding-bottom: 215px; }
	.gct-hero-collage { display: none; }
	.gct-hero-trust { width: calc(100% - 28px); }
	.gct-hero-trust > div { min-height: 68px; padding: 11px 12px; }
	.gct-hero-trust .gct-icon { width: 23px; height: 23px; }
	.gct-hero-trust small { display: none; }
	.gct-tour-search { grid-template-columns: 1fr; padding: 18px; }
	.gct-search-submit { grid-row: auto; height: 48px; }
	.gct-search-reset { justify-self: center; }
	.gct-intro { padding-top: 58px; }
	.gct-tour-grid--six { grid-template-columns: 1fr; gap: 18px; }
	.gct-tour-card__body { padding: 14px; }
	.gct-tour-card h3 { font-size: .9rem; }
	.gct-tour-card__highlights { display: none; }
	.gct-tour-card--wide { grid-template-columns: 1fr; }
	.gct-tour-card--wide .gct-tour-card__image { aspect-ratio: 16 / 9; }
	.gct-benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gct-benefit { border-bottom: 1px solid var(--gct-line); }
	.gct-benefit:nth-child(3),
	.gct-benefit:nth-child(5) { border-left: 0; }
	.gct-destination-grid { grid-template-columns: 1fr 1fr; }
	.gct-process-grid,
	.gct-review-grid,
	.gct-blog-grid { grid-template-columns: 1fr; }
	.gct-heading-with-link { align-items: flex-start; }
	.gct-final-cta { padding-bottom: 40px; }
	.gct-final-cta__inner { padding: 34px 24px; }
	.gct-final-cta .gct-actions { width: 100%; }
	.gct-final-cta .gct-btn { flex: 1; }
}

@media (max-width: 480px) {
	.gct-section { padding: 54px 0; }
	.gct-actions { width: 100%; }
	.gct-actions .gct-btn { flex: 1 1 100%; }
	.gct-hero__inner { min-height: 620px; padding-bottom: 230px; }
	.gct-hero-trust { grid-template-columns: 1fr 1fr; }
	.gct-hero-trust strong { font-size: .75rem; }
	.gct-tour-grid--six { grid-template-columns: 1fr; }
	.gct-benefit-grid { grid-template-columns: 1fr; }
	.gct-benefit + .gct-benefit { border-left: 0; }
	.gct-destination-grid { grid-template-columns: 1fr; }
	.gct-destination-card { min-height: 210px; }
	.gct-heading-with-link { display: block; }
	.gct-heading-with-link > a { margin-top: 8px; }
}

@media (prefers-reduced-motion: reduce) {
	.gct-home *,
	.gct-home *::before,
	.gct-home *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* Product grid: 3 + 3 on desktop/tablet, one card per row on mobile. */
.gct-home .gct-tour-grid--six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.gct-home .gct-tour-grid--six .gct-tour-card__image {
    aspect-ratio: 16 / 10;
}

@media (max-width: 768px) {
    .gct-home .gct-tour-grid--six {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

