/* ============================================================
   GRAVESEND TRAVEL — main.css
   Design system: editorial, navy/coral/gold/cream palette,
   Fraunces serif headlines, Inter body, JetBrains Mono labels.
   ============================================================ */

:root {
	/* Brand palette */
	--gt-navy:        #0d2840;
	--gt-navy-2:      #1a3856;
	--gt-coral:       #e94c3d;
	--gt-coral-dark:  #c93d2f;
	--gt-gold:        #d4a259;
	--gt-cream:       #faf6ef;
	--gt-cream-2:     #f3ecdf;
	--gt-ink:         #1a1a1a;
	--gt-ink-soft:    #4a4a4a;
	--gt-line:        #e5ddd0;
	--gt-white:       #ffffff;

	/* Type */
	--gt-serif:  'Fraunces', Georgia, serif;
	--gt-sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--gt-mono:   'JetBrains Mono', ui-monospace, monospace;

	/* Layout */
	--gt-container: 1200px;
	--gt-radius: 12px;
	--gt-radius-lg: 20px;

	/* Shadows */
	--gt-shadow-sm: 0 2px 8px rgba(13, 40, 64, 0.06);
	--gt-shadow:    0 8px 24px rgba(13, 40, 64, 0.10);
	--gt-shadow-lg: 0 20px 60px rgba(13, 40, 64, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--gt-sans);
	font-size: 16px;
	line-height: 1.6;
	color: var(--gt-ink);
	background: var(--gt-cream);
	-webkit-font-smoothing: antialiased;
}

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

a { color: var(--gt-coral); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gt-coral-dark); }

h1, h2, h3, h4 {
	font-family: var(--gt-serif);
	font-weight: 500;
	color: var(--gt-navy);
	line-height: 1.2;
	letter-spacing: -0.01em;
	margin: 0 0 .6em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; }

.eyebrow {
	font-family: var(--gt-mono);
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gt-coral);
	font-weight: 500;
}

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

.gt-main { min-height: 60vh; padding: 40px 0; }
.gt-page-content { padding: 20px 0 60px; }
.gt-home-content { padding: 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.gt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 24px;
	font-family: var(--gt-sans);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	border-radius: var(--gt-radius);
	cursor: pointer;
	transition: transform .15s, box-shadow .2s, background .2s;
	border: 0;
	text-align: center;
	white-space: nowrap;
}

.gt-btn-primary {
	background: var(--gt-coral);
	color: var(--gt-white);
}
.gt-btn-primary:hover {
	background: var(--gt-coral-dark);
	color: var(--gt-white);
	transform: translateY(-1px);
	box-shadow: var(--gt-shadow);
}

.gt-btn-secondary {
	background: var(--gt-white);
	color: var(--gt-navy);
	border: 1.5px solid var(--gt-navy);
}
.gt-btn-secondary:hover {
	background: var(--gt-navy);
	color: var(--gt-white);
}

.gt-btn-block { display: flex; width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.gt-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--gt-cream);
	border-bottom: 1px solid var(--gt-line);
	transition: background .2s, box-shadow .2s;
}
.gt-header.gt-scrolled {
	background: var(--gt-white);
	box-shadow: var(--gt-shadow-sm);
}
.gt-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 0;
	gap: 20px;
}
.gt-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--gt-serif);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--gt-navy);
}
.gt-logo:hover { color: var(--gt-navy); }
.gt-logo-mark {
	width: 38px; height: 38px;
	background: var(--gt-navy);
	color: var(--gt-gold);
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--gt-serif);
	font-size: 1.4rem;
	font-weight: 600;
}
.gt-nav-links {
	display: flex;
	list-style: none;
	gap: 28px;
	margin: 0;
	padding: 0;
}
.gt-nav-links a {
	color: var(--gt-navy);
	font-weight: 500;
	font-size: 0.95rem;
	padding: 6px 0;
	border-bottom: 2px solid transparent;
	transition: border-color .15s;
}
.gt-nav-links a:hover {
	color: var(--gt-coral);
	border-bottom-color: var(--gt-coral);
}
.gt-nav-cta { display: flex; align-items: center; gap: 12px; }
.gt-mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 8px;
}
.gt-mobile-toggle span {
	width: 22px;
	height: 2px;
	background: var(--gt-navy);
	border-radius: 2px;
	transition: transform .2s;
}

/* ============================================================
   HERO
   ============================================================ */
.gt-hero {
	padding: 60px 0 80px;
	background: var(--gt-cream);
}
.gt-hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 60px;
	align-items: center;
	max-width: var(--gt-container);
	margin: 0 auto;
	padding: 0 24px;
}
.gt-hero-text h1 { margin: 16px 0 20px; }
.gt-hero-sub {
	font-size: 1.15rem;
	color: var(--gt-ink-soft);
	margin-bottom: 28px;
	max-width: 540px;
}
.gt-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.gt-hero-images {
	position: relative;
	min-height: 460px;
}
.gt-hero-img-1 {
	position: absolute;
	top: 0;
	right: 0;
	width: 78%;
	height: 78%;
	background-size: cover;
	background-position: center;
	border-radius: var(--gt-radius-lg);
	box-shadow: var(--gt-shadow-lg);
}
.gt-hero-img-2 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50%;
	height: 50%;
	background-size: cover;
	background-position: center;
	border-radius: var(--gt-radius);
	box-shadow: var(--gt-shadow-lg);
	border: 6px solid var(--gt-cream);
}
.gt-hero-badge {
	position: absolute;
	top: 50%;
	left: -20px;
	background: var(--gt-white);
	padding: 12px 18px;
	border-radius: 12px;
	box-shadow: var(--gt-shadow);
	display: flex;
	flex-direction: column;
	gap: 2px;
	transform: translateY(-50%);
}
.gt-hero-badge-stars {
	color: var(--gt-gold);
	font-size: 0.95rem;
	letter-spacing: 0.05em;
}
.gt-hero-badge-text {
	font-family: var(--gt-mono);
	font-size: 0.72rem;
	color: var(--gt-ink-soft);
	letter-spacing: 0.04em;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.gt-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--gt-line);
	border-radius: var(--gt-radius-lg);
	overflow: hidden;
	max-width: 1000px;
	margin: 60px auto;
}
.gt-stat {
	background: var(--gt-white);
	padding: 28px 20px;
	text-align: center;
}
.gt-stat-num {
	font-family: var(--gt-serif);
	font-size: 2.4rem;
	font-weight: 600;
	color: var(--gt-navy);
	line-height: 1;
	margin-bottom: 6px;
}
.gt-stat-label {
	font-family: var(--gt-mono);
	font-size: 0.75rem;
	letter-spacing: 0.06em;
	color: var(--gt-ink-soft);
	text-transform: uppercase;
}

/* ============================================================
   PACKAGE GRID & CARDS
   ============================================================ */
.gt-pkg-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin: 40px 0 60px;
}
.gt-pkg-card {
	display: flex;
	flex-direction: column;
	background: var(--gt-white);
	border-radius: var(--gt-radius-lg);
	overflow: hidden;
	box-shadow: var(--gt-shadow-sm);
	transition: transform .25s, box-shadow .25s;
	color: var(--gt-ink);
}
.gt-pkg-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--gt-shadow-lg);
	color: var(--gt-ink);
}
.gt-pkg-img {
	position: relative;
	aspect-ratio: 4 / 3;
	background-size: cover;
	background-position: center;
}
.gt-pkg-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	background: var(--gt-white);
	color: var(--gt-navy);
	padding: 5px 12px;
	border-radius: 20px;
	font-family: var(--gt-mono);
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-weight: 500;
}
.gt-pkg-badge-bestseller { background: var(--gt-coral); color: var(--gt-white); }
.gt-pkg-badge-family     { background: var(--gt-gold); color: var(--gt-navy); }
.gt-pkg-badge-value      { background: var(--gt-navy); color: var(--gt-cream); }
.gt-pkg-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.gt-pkg-meta {
	display: flex;
	gap: 16px;
	font-family: var(--gt-mono);
	font-size: 0.78rem;
	color: var(--gt-ink-soft);
	margin-bottom: 10px;
}
.gt-pkg-rating { color: var(--gt-gold); font-weight: 500; }
.gt-pkg-rating small { color: var(--gt-ink-soft); }
.gt-pkg-title {
	font-size: 1.3rem;
	margin: 4px 0 6px;
}
.gt-pkg-sub {
	color: var(--gt-ink-soft);
	font-size: 0.92rem;
	margin: 0 0 16px;
	flex: 1;
}
.gt-pkg-foot {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding-top: 14px;
	border-top: 1px solid var(--gt-line);
}
.gt-pkg-price small {
	display: block;
	font-family: var(--gt-mono);
	font-size: 0.7rem;
	color: var(--gt-ink-soft);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.gt-pkg-price strong {
	font-family: var(--gt-serif);
	font-size: 1.6rem;
	color: var(--gt-navy);
	font-weight: 600;
	line-height: 1;
}
.gt-pkg-cta {
	color: var(--gt-coral);
	font-size: 0.9rem;
	font-weight: 600;
}

/* Filters */
.gt-filters {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin: 30px 0 10px;
}
.gt-filter-btn {
	padding: 8px 18px;
	background: var(--gt-white);
	color: var(--gt-navy);
	border: 1.5px solid var(--gt-line);
	border-radius: 30px;
	font-family: var(--gt-sans);
	font-size: 0.85rem;
	font-weight: 500;
	cursor: pointer;
	transition: all .15s;
}
.gt-filter-btn:hover { border-color: var(--gt-coral); color: var(--gt-coral); }
.gt-filter-btn.active { background: var(--gt-navy); color: var(--gt-cream); border-color: var(--gt-navy); }

/* ============================================================
   WHY US
   ============================================================ */
.gt-why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin: 40px 0 60px;
}
.gt-why-card {
	background: var(--gt-white);
	padding: 28px;
	border-radius: var(--gt-radius);
	border: 1px solid var(--gt-line);
}
.gt-why-icon { font-size: 2rem; margin-bottom: 12px; }
.gt-why-card h3 { margin: 0 0 8px; }
.gt-why-card p { color: var(--gt-ink-soft); margin: 0; font-size: 0.95rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.gt-testimonials {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin: 40px 0 60px;
}
.gt-testimonial-card {
	background: var(--gt-white);
	padding: 32px;
	border-radius: var(--gt-radius-lg);
	box-shadow: var(--gt-shadow-sm);
	position: relative;
}
.gt-testimonial-quote {
	position: absolute;
	top: 12px;
	left: 24px;
	font-family: var(--gt-serif);
	font-size: 4rem;
	color: var(--gt-gold);
	line-height: 1;
	opacity: 0.4;
}
.gt-testimonial-stars { color: var(--gt-gold); margin-bottom: 14px; }
.gt-testimonial-text {
	font-family: var(--gt-serif);
	font-size: 1.05rem;
	color: var(--gt-ink);
	font-style: italic;
	margin-bottom: 18px;
	line-height: 1.5;
}
.gt-testimonial-text p { margin: 0; }
.gt-testimonial-author { display: flex; flex-direction: column; gap: 2px; }
.gt-testimonial-author strong { color: var(--gt-navy); font-size: 0.95rem; }
.gt-testimonial-author span { color: var(--gt-ink-soft); font-size: 0.85rem; }

/* ============================================================
   FAQ
   ============================================================ */
.gt-faq-list {
	max-width: 800px;
	margin: 40px auto 60px;
}
.gt-faq-item {
	background: var(--gt-white);
	border: 1px solid var(--gt-line);
	border-radius: var(--gt-radius);
	margin-bottom: 12px;
	overflow: hidden;
	transition: box-shadow .2s;
}
.gt-faq-item.is-open { box-shadow: var(--gt-shadow-sm); }
.gt-faq-q {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px;
	background: none;
	border: 0;
	cursor: pointer;
	font-family: var(--gt-sans);
	font-size: 1rem;
	font-weight: 500;
	color: var(--gt-navy);
	text-align: left;
}
.gt-faq-q-icon {
	font-size: 1.3rem;
	color: var(--gt-coral);
	transition: transform .2s;
}
.gt-faq-item.is-open .gt-faq-q-icon { transform: rotate(45deg); }
.gt-faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease, padding .2s;
	padding: 0 24px;
	color: var(--gt-ink-soft);
}
.gt-faq-item.is-open .gt-faq-a {
	max-height: 600px;
	padding: 0 24px 22px;
}
.gt-faq-a p { margin: 0 0 10px; }

/* ============================================================
   LEAD FORM
   ============================================================ */
.gt-lead-form {
	max-width: 720px;
	margin: 30px auto 60px;
	background: var(--gt-white);
	padding: 32px;
	border-radius: var(--gt-radius-lg);
	box-shadow: var(--gt-shadow);
}
.gt-form-row { margin-bottom: 16px; }
.gt-form-row-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.gt-lead-form label {
	display: block;
	width: 100%;
}
.gt-lead-form label span {
	display: block;
	font-family: var(--gt-mono);
	font-size: 0.72rem;
	letter-spacing: 0.06em;
	color: var(--gt-ink-soft);
	text-transform: uppercase;
	margin-bottom: 6px;
}
.gt-lead-form input,
.gt-lead-form textarea,
.gt-lead-form select {
	width: 100%;
	padding: 12px 14px;
	font-family: var(--gt-sans);
	font-size: 0.95rem;
	border: 1.5px solid var(--gt-line);
	border-radius: 8px;
	background: var(--gt-cream);
	transition: border-color .15s, background .15s;
}
.gt-lead-form input:focus,
.gt-lead-form textarea:focus,
.gt-lead-form select:focus {
	outline: 0;
	border-color: var(--gt-coral);
	background: var(--gt-white);
}
.gt-form-fineprint {
	font-size: 0.82rem;
	color: var(--gt-ink-soft);
	text-align: center;
	margin-top: 12px;
}
.gt-lead-form.is-submitting button { opacity: 0.6; pointer-events: none; }
.gt-lead-success {
	background: var(--gt-white);
	padding: 40px 32px;
	border-radius: var(--gt-radius-lg);
	max-width: 720px;
	margin: 30px auto 60px;
	text-align: center;
	box-shadow: var(--gt-shadow);
}
.gt-lead-success h3 { color: var(--gt-navy); margin-bottom: 10px; }

/* ============================================================
   TOUR DETAIL
   ============================================================ */
.gt-tour-hero {
	background: var(--gt-navy);
	background-size: cover;
	background-position: center;
	color: var(--gt-cream);
	padding: 80px 0;
	margin: -40px 0 0;
}
.gt-tour-hero-content { max-width: 800px; }
.gt-tour-hero-content .eyebrow { color: var(--gt-gold); }
.gt-tour-hero-content h1 { color: var(--gt-cream); margin-top: 12px; }
.gt-tour-subtitle {
	font-family: var(--gt-serif);
	font-size: 1.3rem;
	color: var(--gt-cream-2);
	margin-bottom: 28px;
}
.gt-tour-meta-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	font-family: var(--gt-mono);
	font-size: 0.85rem;
	letter-spacing: 0.04em;
}
.gt-tour-price { color: var(--gt-gold); font-weight: 600; }

.gt-tour-grid {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 60px;
	margin: 60px 0;
	align-items: start;
}
.gt-tour-section { margin-bottom: 50px; }
.gt-tour-section h2 {
	border-bottom: 2px solid var(--gt-coral);
	padding-bottom: 10px;
	margin-bottom: 22px;
	display: inline-block;
}

.gt-highlights-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.gt-highlights-list li {
	background: var(--gt-cream);
	padding: 14px 18px;
	border-radius: 8px;
	font-size: 0.95rem;
	border-left: 3px solid var(--gt-coral);
}

.gt-inc-exc-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
.gt-inc-col, .gt-exc-col {
	background: var(--gt-white);
	padding: 22px;
	border-radius: var(--gt-radius);
	border: 1px solid var(--gt-line);
}
.gt-inc-col h3 { color: #1a8c4a; }
.gt-exc-col h3 { color: var(--gt-coral); }
.gt-inc-col ul, .gt-exc-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.gt-inc-col li, .gt-exc-col li {
	padding: 6px 0;
	font-size: 0.92rem;
	border-bottom: 1px solid var(--gt-line);
}
.gt-inc-col li:last-child, .gt-exc-col li:last-child { border: 0; }

.gt-itinerary { margin-top: 20px; }
.gt-itinerary-item {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 20px;
	padding: 20px 0;
	border-bottom: 1px dashed var(--gt-line);
}
.gt-itinerary-item:last-child { border: 0; }
.gt-itinerary-day {
	font-family: var(--gt-mono);
	font-size: 0.75rem;
	letter-spacing: 0.06em;
	color: var(--gt-coral);
	text-transform: uppercase;
	font-weight: 500;
	padding-top: 4px;
}
.gt-itinerary-content h3 { margin: 0 0 6px; font-size: 1.1rem; }
.gt-itinerary-content p { margin: 0; color: var(--gt-ink-soft); }

.gt-pickup-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}
.gt-pickup-list li {
	padding: 10px 14px;
	background: var(--gt-cream);
	border-radius: 8px;
	font-size: 0.92rem;
}
.gt-pickup-note {
	font-size: 0.85rem;
	color: var(--gt-ink-soft);
	margin-top: 14px;
	font-style: italic;
}

.gt-tour-sidebar {
	position: sticky;
	top: 100px;
}
.gt-booking-card {
	background: var(--gt-white);
	padding: 28px;
	border-radius: var(--gt-radius-lg);
	box-shadow: var(--gt-shadow);
	border: 1px solid var(--gt-line);
}
.gt-booking-price {
	text-align: center;
	margin-bottom: 20px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--gt-line);
}
.gt-booking-price small {
	display: block;
	font-family: var(--gt-mono);
	font-size: 0.7rem;
	letter-spacing: 0.06em;
	color: var(--gt-ink-soft);
	text-transform: uppercase;
}
.gt-booking-price strong {
	font-family: var(--gt-serif);
	font-size: 2.4rem;
	color: var(--gt-navy);
	font-weight: 600;
	display: block;
	line-height: 1;
	margin: 4px 0;
}
.gt-booking-card h4 { margin: 0 0 12px; font-size: 0.95rem; }
.gt-departures {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
}
.gt-departures li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	border-bottom: 1px solid var(--gt-line);
	font-size: 0.9rem;
}
.gt-dep-tag {
	font-family: var(--gt-mono);
	font-size: 0.7rem;
	padding: 2px 8px;
	border-radius: 10px;
}
.gt-departure-few-left .gt-dep-tag { background: #ffe5d0; color: var(--gt-coral); }
.gt-departure-sold-out { opacity: 0.5; }
.gt-departure-sold-out .gt-dep-tag { background: #eee; color: #888; }

.gt-booking-card .gt-btn { margin-bottom: 8px; }
.gt-trust-mini {
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid var(--gt-line);
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 0.85rem;
	color: var(--gt-ink-soft);
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.gt-cta-final {
	background: var(--gt-navy);
	color: var(--gt-cream);
	padding: 70px 24px;
	text-align: center;
	margin: 60px 0 0;
}
.gt-cta-final h2 { color: var(--gt-cream); }
.gt-cta-final p { color: var(--gt-cream-2); margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }
.gt-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.gt-footer {
	background: var(--gt-navy);
	color: var(--gt-cream);
	padding: 60px 0 24px;
}
.gt-footer h4 {
	color: var(--gt-gold);
	font-size: 0.9rem;
	font-family: var(--gt-mono);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 16px;
}
.gt-footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.gt-footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--gt-serif);
	font-size: 1.4rem;
	color: var(--gt-cream);
	margin-bottom: 16px;
}
.gt-footer-brand p { color: var(--gt-cream-2); margin-bottom: 16px; }
.gt-footer-trust {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.gt-footer-trust span {
	font-family: var(--gt-mono);
	font-size: 0.7rem;
	padding: 4px 10px;
	background: rgba(255,255,255,0.08);
	border-radius: 4px;
	letter-spacing: 0.04em;
}
.gt-footer-col ul { list-style: none; padding: 0; margin: 0; }
.gt-footer-col li { padding: 4px 0; }
.gt-footer-col a { color: var(--gt-cream-2); font-size: 0.9rem; }
.gt-footer-col a:hover { color: var(--gt-gold); }
.gt-footer-col p { color: var(--gt-cream-2); font-size: 0.9rem; margin: 0 0 8px; }
.gt-footer-col p strong { color: var(--gt-cream); }
.gt-footer-bottom {
	padding-top: 24px;
	font-size: 0.85rem;
	color: var(--gt-cream-2);
}

/* WhatsApp float */
.gt-whatsapp-float {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 60px;
	height: 60px;
	background: #25d366;
	color: var(--gt-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
	z-index: 99;
	animation: gt-wa-pulse 2.5s infinite;
}
.gt-whatsapp-float:hover { color: var(--gt-white); transform: scale(1.05); }
@keyframes gt-wa-pulse {
	0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.45); }
	50%      { box-shadow: 0 8px 24px rgba(37,211,102,0.75), 0 0 0 12px rgba(37,211,102,0.05); }
}

/* ============================================================
   FADE-UP ANIMATIONS
   ============================================================ */
.fade-up {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .6s, transform .6s;
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 968px) {
	.gt-hero-grid,
	.gt-tour-grid,
	.gt-pkg-grid,
	.gt-why-grid,
	.gt-testimonials,
	.gt-stats-grid,
	.gt-footer-grid,
	.gt-form-row-split,
	.gt-inc-exc-grid,
	.gt-highlights-list,
	.gt-pickup-list {
		grid-template-columns: 1fr 1fr;
	}
	.gt-stats-grid { grid-template-columns: repeat(2, 1fr); }
	.gt-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
	.gt-tour-grid { grid-template-columns: 1fr; }
	.gt-tour-sidebar { position: static; }
}

@media (max-width: 700px) {
	.gt-pkg-grid,
	.gt-why-grid,
	.gt-testimonials,
	.gt-stats-grid,
	.gt-hero-grid,
	.gt-footer-grid,
	.gt-form-row-split,
	.gt-inc-exc-grid,
	.gt-highlights-list,
	.gt-pickup-list {
		grid-template-columns: 1fr;
	}
	.gt-nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--gt-white);
		flex-direction: column;
		gap: 0;
		padding: 12px 24px;
		box-shadow: var(--gt-shadow);
	}
	.gt-nav-links.is-open { display: flex; }
	.gt-nav-links li { border-bottom: 1px solid var(--gt-line); }
	.gt-nav-links li:last-child { border: 0; }
	.gt-nav-links a { padding: 14px 0; display: block; }
	.gt-mobile-toggle { display: flex; }
	.gt-nav-cta .gt-btn { display: none; }
	.gt-hero { padding: 30px 0 50px; }
	.gt-hero-images { min-height: 300px; }
	.gt-hero-badge { left: 0; }
	.gt-tour-hero { padding: 50px 0; }
	.gt-itinerary-item { grid-template-columns: 1fr; gap: 6px; }
	.gt-cta-final { padding: 50px 24px; }
}

/* ============================================================
   GUTENBERG ALIGNMENT HELPERS
   ============================================================ */
.alignwide { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull { max-width: none; }
.has-text-align-center { text-align: center; }
.has-text-align-right  { text-align: right; }

/* WP block defaults */
.wp-block-heading { margin-top: 1.4em; }
.wp-block-image img { border-radius: var(--gt-radius); }
