/* =========================================================================
   Town & Tailgate — main stylesheet
   Broadcast navy / cream editorial / warm gold. v1.0.0
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Tokens
   ---------------------------------------------------------------------- */
:root {
	--navy:        #0d1524;
	--navy-2:      #131d31;
	--navy-3:      #1b2740;
	--ink:         #1a2333;
	--muted:       #5c6575;
	--line:        #e4ddcd;
	--line-dark:   rgba(255, 255, 255, 0.12);
	--cream:       #f3eee2;
	--paper:       #faf7f0;
	--white:       #ffffff;
	--gold:        #c49a3f;
	--gold-2:      #d9b45c;
	--gold-soft:   rgba(196, 154, 63, 0.14);

	--font-display: "Oswald", "Arial Narrow", sans-serif;
	--font-body:    "Inter", -apple-system, "Segoe UI", sans-serif;

	--radius:    14px;
	--radius-sm: 9px;
	--radius-lg: 20px;

	--shadow-card: 0 8px 28px rgba(13, 21, 36, 0.10);
	--shadow-pop:  0 14px 40px rgba(13, 21, 36, 0.18);

	--container: 76rem;
	--gutter: clamp(1rem, 4vw, 2rem);

	--speed: 180ms;
	--ease: cubic-bezier(0.33, 1, 0.68, 1);
}

/* -------------------------------------------------------------------------
   2. Base
   ---------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.6;
}

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

a {
	color: inherit;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1, h2, h3, h4 {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1.08;
	text-transform: uppercase;
	letter-spacing: 0.01em;
}

p {
	margin: 0;
}

:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 3px;
	border-radius: 4px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	word-wrap: normal !important;
}

.skip-link {
	position: absolute;
	left: 1rem;
	top: -3rem;
	z-index: 200;
	padding: 0.6rem 1rem;
	background: var(--gold);
	color: var(--navy);
	font-weight: 600;
	border-radius: var(--radius-sm);
	transition: top var(--speed) var(--ease);
}

.skip-link:focus {
	top: 1rem;
	clip: auto;
	width: auto;
	height: auto;
}

.tt-container {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

/* -------------------------------------------------------------------------
   3. Shared components
   ---------------------------------------------------------------------- */
.tt-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.72rem 1.35rem;
	border: 0;
	border-radius: var(--radius-sm);
	font-family: var(--font-display);
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: background var(--speed) var(--ease), transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.tt-btn--gold {
	background: var(--gold);
	color: var(--navy);
}

.tt-btn--gold:hover {
	background: var(--gold-2);
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(196, 154, 63, 0.35);
}

.tt-btn--gold:active {
	transform: translateY(0);
}

.tt-iconbtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: transparent;
	border: 0;
	border-radius: 50%;
	color: var(--white);
	cursor: pointer;
	transition: background var(--speed) var(--ease);
}

.tt-iconbtn:hover {
	background: rgba(255, 255, 255, 0.1);
}

.tt-eyebrow {
	font-family: var(--font-display);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold);
}

.tt-chip,
.tt-badge {
	display: inline-block;
	padding: 0.28rem 0.7rem;
	border-radius: 999px;
	font-family: var(--font-display);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.tt-chip {
	background: var(--gold);
	color: var(--navy);
}

.tt-badge {
	background: var(--gold-soft);
	color: var(--gold);
	border: 1px solid var(--gold);
}

.tt-section-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.4rem;
}

.tt-section-title {
	font-size: clamp(1.25rem, 2.4vw, 1.55rem);
	letter-spacing: 0.03em;
}

.tt-section-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-family: var(--font-display);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--gold);
	white-space: nowrap;
}

.tt-section-link .tt-icon {
	transition: transform var(--speed) var(--ease);
}

.tt-section-link:hover .tt-icon {
	transform: translateX(3px);
}

.tt-empty {
	padding: 1.2rem;
	border: 1px dashed var(--line);
	border-radius: var(--radius);
	color: var(--muted);
	font-size: 0.92rem;
	background: var(--white);
}

/* -------------------------------------------------------------------------
   4. Header
   ---------------------------------------------------------------------- */
.tt-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--navy);
	color: var(--white);
	transition: box-shadow var(--speed) var(--ease);
}

.tt-header.is-stuck {
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.tt-header__inner {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	min-height: 74px;
}

.tt-header__brand .custom-logo {
	max-height: 52px;
	width: auto;
}

.tt-logo {
	display: inline-flex;
	flex-direction: column;
	text-decoration: none;
	line-height: 1;
}

.tt-logo__mark {
	display: inline-flex;
	align-items: baseline;
	gap: 0.3rem;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.5rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.tt-logo__town {
	color: var(--white);
}

.tt-logo__tailgate {
	color: var(--gold);
}

.tt-logo__flag {
	color: var(--gold);
	transform: translateY(2px);
}

.tt-logo__tag {
	margin-top: 0.3rem;
	font-size: 0.56rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}

/* Primary nav (desktop) */
.tt-nav {
	margin-left: auto;
}

.tt-nav__list {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.tt-nav__list > li {
	position: relative;
}

.tt-nav__list a {
	display: block;
	padding: 0.55rem 0.8rem;
	font-size: 0.92rem;
	font-weight: 500;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.88);
	border-radius: var(--radius-sm);
	transition: color var(--speed) var(--ease), background var(--speed) var(--ease);
}

.tt-nav__list a:hover {
	color: var(--gold-2);
	background: rgba(255, 255, 255, 0.06);
}

/* Dropdowns */
.tt-nav__list .sub-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 220px;
	padding: 0.5rem;
	background: var(--navy-2);
	border: 1px solid var(--line-dark);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-pop);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity var(--speed) var(--ease), transform var(--speed) var(--ease), visibility var(--speed);
}

.tt-nav__list li:hover > .sub-menu,
.tt-nav__list li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.tt-nav__mobile-cta {
	display: none;
}

.tt-header__actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

/* Burger */
.tt-burger {
	display: none;
	flex-direction: column;
	gap: 5px;
}

.tt-burger__bar {
	width: 20px;
	height: 2px;
	background: var(--white);
	border-radius: 2px;
	transition: transform var(--speed) var(--ease), opacity var(--speed) var(--ease);
}

.tt-burger[aria-expanded="true"] .tt-burger__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.tt-burger[aria-expanded="true"] .tt-burger__bar:nth-child(2) {
	opacity: 0;
}

.tt-burger[aria-expanded="true"] .tt-burger__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Search bar drawer */
.tt-searchbar {
	background: var(--navy-2);
	border-top: 1px solid var(--line-dark);
	padding: 0.9rem 0;
}

.tt-searchbar__form {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: rgba(255, 255, 255, 0.6);
}

.tt-searchbar__form input[type="search"] {
	flex: 1;
	padding: 0.65rem 0.2rem;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--line-dark);
	color: var(--white);
	font-family: var(--font-body);
	font-size: 1rem;
}

.tt-searchbar__form input[type="search"]:focus {
	outline: none;
	border-bottom-color: var(--gold);
}

/* -------------------------------------------------------------------------
   5. Hero
   ---------------------------------------------------------------------- */
.tt-hero {
	position: relative;
	background: var(--navy) center / cover no-repeat;
	color: var(--white);
	padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(3.5rem, 8vw, 6.5rem);
	overflow: hidden;
}

.tt-hero__scrim {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(100deg, rgba(13, 21, 36, 0.92) 20%, rgba(13, 21, 36, 0.55) 55%, rgba(13, 21, 36, 0.35) 100%),
		linear-gradient(to top, rgba(13, 21, 36, 0.85), transparent 40%);
}

.tt-hero__inner {
	position: relative;
	max-width: var(--container);
}

.tt-hero__title {
	font-size: clamp(2.2rem, 6.4vw, 4.4rem);
	font-weight: 700;
	letter-spacing: 0.015em;
}

.tt-hero__line {
	display: block;
}

.tt-hero__line--gold {
	color: var(--gold-2);
}

.tt-hero__text {
	margin-top: 1.1rem;
	max-width: 26rem;
	font-size: 1.02rem;
	color: rgba(255, 255, 255, 0.85);
}

/* Hero search */
.tt-hero__search {
	display: flex;
	gap: 0.6rem;
	margin-top: 1.8rem;
	max-width: 34rem;
	padding: 0.45rem;
	background: var(--white);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-pop);
}

.tt-hero__field {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	flex: 1;
	padding-left: 0.7rem;
	color: var(--muted);
}

.tt-hero__field input[type="search"] {
	flex: 1;
	min-width: 0;
	border: 0;
	background: transparent;
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--ink);
}

.tt-hero__field input[type="search"]:focus {
	outline: none;
}

.tt-hero__popular {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.55rem;
	margin-top: 1.1rem;
}

.tt-hero__popular-label {
	font-family: var(--font-display);
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold-2);
}

.tt-hero__popular ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.tt-hero__popular a {
	display: inline-block;
	padding: 0.32rem 0.85rem;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	font-size: 0.82rem;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.9);
	background: rgba(13, 21, 36, 0.35);
	transition: border-color var(--speed) var(--ease), background var(--speed) var(--ease);
}

.tt-hero__popular a:hover {
	border-color: var(--gold-2);
	background: rgba(196, 154, 63, 0.18);
}

/* -------------------------------------------------------------------------
   6. Guide categories
   ---------------------------------------------------------------------- */
.tt-categories {
	background: var(--cream);
	padding: clamp(2rem, 5vw, 3rem) 0;
	border-bottom: 1px solid var(--line);
}

.tt-categories__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
}

.tt-category + .tt-category {
	border-left: 1px solid var(--line);
}

.tt-category__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.55rem;
	padding: 0.75rem 1.1rem;
	text-align: center;
	text-decoration: none;
	border-radius: var(--radius);
	transition: transform var(--speed) var(--ease);
}

.tt-category__link:hover {
	transform: translateY(-3px);
}

.tt-category__icon {
	color: var(--navy);
	transition: color var(--speed) var(--ease);
}

.tt-category__link:hover .tt-category__icon {
	color: var(--gold);
}

.tt-category__title {
	font-family: var(--font-display);
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--ink);
}

.tt-category__text {
	font-size: 0.8rem;
	line-height: 1.45;
	color: var(--muted);
}

/* -------------------------------------------------------------------------
   7. Featured destinations
   ---------------------------------------------------------------------- */
.tt-destinations {
	background: var(--navy);
	color: var(--white);
	padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.tt-section-head--dark .tt-section-title {
	color: var(--white);
}

.tt-rail-wrap {
	position: relative;
}

.tt-rail {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: clamp(230px, 26vw, 280px);
	gap: 1.1rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 0.75rem;
	scrollbar-width: thin;
	scrollbar-color: var(--navy-3) transparent;
}

.tt-rail::-webkit-scrollbar {
	height: 6px;
}

.tt-rail::-webkit-scrollbar-thumb {
	background: var(--navy-3);
	border-radius: 3px;
}

.tt-dest {
	scroll-snap-align: start;
	background: var(--navy-2);
	border: 1px solid var(--line-dark);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform var(--speed) var(--ease), border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.tt-dest:hover {
	transform: translateY(-4px);
	border-color: rgba(217, 180, 92, 0.5);
	box-shadow: var(--shadow-pop);
}

.tt-dest__media {
	position: relative;
	display: block;
	aspect-ratio: 5 / 4;
	overflow: hidden;
}

.tt-dest__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms var(--ease);
}

.tt-dest:hover .tt-dest__media img {
	transform: scale(1.05);
}

.tt-dest__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(13, 21, 36, 0.92) 0%, rgba(13, 21, 36, 0.25) 45%, transparent 70%);
}

.tt-dest__logo {
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	background: var(--white);
	border-radius: 50%;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.tt-dest__logo img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.tt-dest__caption {
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: 0.9rem;
	z-index: 2;
}

.tt-dest__town {
	display: block;
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--white);
}

.tt-dest__team {
	display: block;
	margin-top: 0.15rem;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.75);
}

.tt-dest__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.7rem 1rem;
	border-top: 1px solid var(--line-dark);
}

.tt-dest__guides {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--gold-2);
}

.tt-dest__guides:hover {
	color: var(--white);
}

.tt-dest__game {
	text-align: right;
}

.tt-dest__game-label {
	display: block;
	font-size: 0.62rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
}

.tt-dest__game-date {
	display: block;
	font-family: var(--font-display);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--white);
}

/* Rail arrows */
.tt-rail-btn {
	position: absolute;
	top: 40%;
	z-index: 5;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: var(--gold);
	color: var(--navy);
	cursor: pointer;
	box-shadow: var(--shadow-pop);
	transition: background var(--speed) var(--ease), opacity var(--speed) var(--ease);
}

.tt-rail-btn:hover {
	background: var(--gold-2);
}

.tt-rail-btn[disabled] {
	opacity: 0.35;
	cursor: default;
}

.tt-rail-btn--prev {
	left: max(0.5rem, calc((100vw - var(--container)) / 2 - 22px));
	transform: rotate(180deg);
}

.tt-rail-btn--next {
	right: max(0.5rem, calc((100vw - var(--container)) / 2 - 22px));
}

/* -------------------------------------------------------------------------
   8. AI Trip Planner
   ---------------------------------------------------------------------- */
.tt-planner {
	padding: clamp(2.5rem, 6vw, 4rem) 0 0;
	background: var(--paper);
}

.tt-planner__card {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-areas:
		"phone intro"
		"phone benefits";
	gap: 0.5rem 2.5rem;
	align-items: center;
	padding: clamp(1.5rem, 4vw, 2.5rem);
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
}

.tt-planner__phone {
	grid-area: phone;
	max-width: 200px;
}

.tt-planner__phone img {
	border-radius: var(--radius);
	box-shadow: var(--shadow-pop);
}

.tt-planner__intro {
	grid-area: intro;
}

.tt-planner__heading-row {
	display: flex;
	align-items: center;
	gap: 0.7rem;
}

.tt-planner__heading {
	font-size: clamp(1.35rem, 2.6vw, 1.7rem);
}

.tt-planner__text {
	margin-top: 0.6rem;
	max-width: 30rem;
	color: var(--muted);
}

.tt-planner__cta {
	margin-top: 1.1rem;
}

.tt-planner__benefits {
	grid-area: benefits;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 1rem;
	border-top: 1px solid var(--line);
	padding-top: 1.4rem;
}

.tt-benefit {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
	padding: 0 1rem;
	text-align: center;
}

.tt-benefit + .tt-benefit {
	border-left: 1px solid var(--line);
}

.tt-benefit__icon {
	color: var(--navy);
}

.tt-benefit__title {
	font-family: var(--font-display);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tt-benefit__text {
	font-size: 0.78rem;
	color: var(--muted);
}

/* -------------------------------------------------------------------------
   9. Editorial band
   ---------------------------------------------------------------------- */
.tt-editorial {
	padding: clamp(2.5rem, 6vw, 4rem) 0;
	background: var(--paper);
}

.tt-editorial__grid {
	display: grid;
	grid-template-columns: 1.15fr 1.15fr 1fr;
	gap: clamp(1.5rem, 3.5vw, 2.75rem);
	align-items: start;
}

/* Playbook column */
.tt-playbook__feature {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.tt-playbook__feature:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-pop);
}

.tt-playbook__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	background: var(--navy-2);
	overflow: hidden;
}

.tt-playbook__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tt-playbook__media .tt-chip {
	position: absolute;
	top: 0.8rem;
	left: 0.8rem;
	z-index: 2;
}

.tt-playbook__body {
	padding: 1.1rem 1.2rem 1.3rem;
}

.tt-playbook__title {
	font-size: 1.2rem;
	letter-spacing: 0.02em;
}

.tt-playbook__title a,
.tt-playbook__row-title a,
.tt-article__title a,
.tt-post-card__title a {
	text-decoration: none;
	color: inherit;
	transition: color var(--speed) var(--ease);
}

.tt-playbook__title a:hover,
.tt-playbook__row-title a:hover,
.tt-article__title a:hover,
.tt-post-card__title a:hover {
	color: var(--gold);
}

.tt-playbook__excerpt {
	margin-top: 0.5rem;
	font-size: 0.88rem;
	color: var(--muted);
}

.tt-playbook__row {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	margin-top: 0.8rem;
	padding: 0.7rem 0.8rem;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: border-color var(--speed) var(--ease);
}

.tt-playbook__row:hover {
	border-color: var(--gold);
}

.tt-playbook__row-thumb {
	flex: 0 0 56px;
}

.tt-playbook__row-thumb img {
	width: 56px;
	height: 56px;
	object-fit: cover;
	border-radius: var(--radius-sm);
}

.tt-playbook__row-title {
	font-family: var(--font-body);
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.35;
	text-transform: none;
	letter-spacing: 0;
}

/* Articles column */
.tt-articles__list {
	display: flex;
	flex-direction: column;
}

.tt-article {
	display: flex;
	gap: 1rem;
	padding: 0.9rem 0;
}

.tt-article + .tt-article {
	border-top: 1px solid var(--line);
}

.tt-article__thumb {
	flex: 0 0 96px;
}

.tt-article__thumb img {
	width: 96px;
	height: 78px;
	object-fit: cover;
	border-radius: var(--radius-sm);
	transition: transform var(--speed) var(--ease);
}

.tt-article:hover .tt-article__thumb img {
	transform: scale(1.04);
}

.tt-article__title {
	margin-top: 0.2rem;
	font-family: var(--font-body);
	font-size: 0.96rem;
	font-weight: 600;
	line-height: 1.35;
	text-transform: none;
	letter-spacing: 0;
}

.tt-article__meta {
	display: flex;
	gap: 0.4rem;
	margin-top: 0.35rem;
	font-size: 0.76rem;
	color: var(--muted);
}

/* Spotlight column */
.tt-spotlight__card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-card);
}

.tt-spotlight__media {
	position: relative;
	aspect-ratio: 16 / 11;
	background: var(--navy-2);
}

.tt-spotlight__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tt-spotlight__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(13, 21, 36, 0.9), transparent 55%);
}

.tt-spotlight__caption {
	position: absolute;
	left: 1rem;
	bottom: 0.9rem;
	z-index: 2;
	color: var(--white);
}

.tt-spotlight__name {
	display: block;
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.tt-spotlight__loc {
	display: block;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.75);
}

.tt-spotlight__links li + li {
	border-top: 1px solid var(--line);
}

.tt-spotlight__links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.78rem 1.1rem;
	font-size: 0.9rem;
	font-weight: 500;
	text-decoration: none;
	transition: background var(--speed) var(--ease), color var(--speed) var(--ease), padding-left var(--speed) var(--ease);
}

.tt-spotlight__links a:hover {
	background: var(--gold-soft);
	color: var(--navy);
	padding-left: 1.35rem;
}

.tt-spotlight__links .tt-icon {
	color: var(--gold);
}

/* -------------------------------------------------------------------------
   10. Newsletter
   ---------------------------------------------------------------------- */
.tt-newsletter {
	background: var(--navy);
	color: var(--white);
	padding: clamp(2rem, 5vw, 3rem) 0;
	border-bottom: 1px solid var(--line-dark);
}

.tt-newsletter__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.tt-newsletter__copy {
	display: flex;
	align-items: center;
	gap: 1.1rem;
}

.tt-newsletter__icon {
	display: grid;
	place-items: center;
	flex: 0 0 56px;
	width: 56px;
	height: 56px;
	border: 1px solid var(--line-dark);
	border-radius: var(--radius-sm);
	color: var(--gold-2);
}

.tt-newsletter__heading {
	font-size: 1.2rem;
	letter-spacing: 0.05em;
}

.tt-newsletter__text {
	margin-top: 0.3rem;
	max-width: 26rem;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.7);
}

.tt-newsletter__form {
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
}

.tt-newsletter__form input[type="email"] {
	min-width: 240px;
	padding: 0.72rem 1rem;
	background: var(--navy-2);
	border: 1px solid var(--line-dark);
	border-radius: var(--radius-sm);
	color: var(--white);
	font-family: var(--font-body);
	font-size: 0.95rem;
}

.tt-newsletter__form input[type="email"]::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

.tt-newsletter__form input[type="email"]:focus {
	outline: none;
	border-color: var(--gold);
}

.tt-newsletter__note {
	flex-basis: 100%;
	font-size: 0.78rem;
	color: var(--gold-2);
}

/* -------------------------------------------------------------------------
   11. Footer
   ---------------------------------------------------------------------- */
.tt-footer {
	background: var(--navy);
	color: var(--white);
}

.tt-footer__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
	padding-top: 2.4rem;
	padding-bottom: 2rem;
}

.tt-footer__tagline {
	margin-top: 0.5rem;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.55);
}

.tt-footer__menu {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 1.4rem;
}

.tt-footer__menu a {
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.8);
	transition: color var(--speed) var(--ease);
}

.tt-footer__menu a:hover {
	color: var(--gold-2);
}

.tt-footer__social {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.tt-footer__social-label {
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
}

.tt-footer__social ul {
	display: flex;
	gap: 0.9rem;
}

.tt-footer__social a {
	font-size: 0.85rem;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.85);
	transition: color var(--speed) var(--ease);
}

.tt-footer__social a:hover {
	color: var(--gold-2);
}

.tt-footer__legal {
	border-top: 1px solid var(--line-dark);
}

.tt-footer__legal-inner {
	padding-top: 1.1rem;
	padding-bottom: 1.1rem;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.5);
}

/* -------------------------------------------------------------------------
   12. Archive / fallback (index.php)
   ---------------------------------------------------------------------- */
.tt-archive__head {
	background: var(--navy);
	color: var(--white);
	padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.tt-archive__title {
	font-size: clamp(1.8rem, 4.5vw, 2.6rem);
}

.tt-archive__title span {
	color: var(--gold-2);
}

.tt-archive__desc {
	margin-top: 0.6rem;
	color: rgba(255, 255, 255, 0.75);
}

.tt-archive__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	padding: clamp(2rem, 5vw, 3rem) 0;
}

.tt-post-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.tt-post-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-pop);
}

.tt-post-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	background: var(--cream);
	overflow: hidden;
}

.tt-post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tt-post-card__body {
	padding: 1.1rem 1.2rem 1.3rem;
}

.tt-post-card__title {
	margin-top: 0.3rem;
	font-family: var(--font-body);
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.35;
	text-transform: none;
	letter-spacing: 0;
}

.tt-post-card__excerpt {
	margin-top: 0.45rem;
	font-size: 0.88rem;
	color: var(--muted);
}

.tt-pagination {
	padding-bottom: clamp(2rem, 5vw, 3rem);
}

.tt-pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 0.4rem;
}

.tt-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 40px;
	height: 40px;
	padding: 0 0.6rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	font-family: var(--font-display);
	font-weight: 600;
	text-decoration: none;
	color: var(--ink);
	background: var(--white);
}

.tt-pagination .page-numbers.current,
.tt-pagination .page-numbers:hover {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--navy);
}

/* -------------------------------------------------------------------------
   13. Reveal on scroll
   ---------------------------------------------------------------------- */
.tt-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}

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

/* -------------------------------------------------------------------------
   12b. Destination detail
   ---------------------------------------------------------------------- */
.tt-detail__hero {
	position: relative;
	background: var(--navy) center / cover no-repeat;
	color: var(--white);
	padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(2rem, 5vw, 3rem);
}

.tt-detail__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(13, 21, 36, 0.95) 5%, rgba(13, 21, 36, 0.55) 55%, rgba(13, 21, 36, 0.35));
}

.tt-detail__hero-inner {
	position: relative;
	display: flex;
	align-items: center;
	gap: 1.4rem;
}

.tt-detail__logo {
	display: grid;
	place-items: center;
	flex: 0 0 92px;
	width: 92px;
	height: 92px;
	background: var(--white);
	border-radius: 50%;
	box-shadow: var(--shadow-pop);
}

.tt-detail__logo img {
	width: 64px;
	height: 64px;
	object-fit: contain;
}

.tt-detail__title {
	margin-top: 0.25rem;
	font-size: clamp(2rem, 5.5vw, 3.2rem);
	font-weight: 700;
}

.tt-detail__team {
	margin-top: 0.3rem;
	color: rgba(255, 255, 255, 0.8);
}

.tt-detail__facts {
	background: var(--cream);
	border-bottom: 1px solid var(--line);
}

.tt-detail__facts-inner {
	display: flex;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.tt-fact {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	color: var(--navy);
}

.tt-fact__label {
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
}

.tt-fact__value {
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.tt-detail__cta {
	margin-left: auto;
}

.tt-detail__body {
	padding-top: clamp(2rem, 5vw, 3rem);
	padding-bottom: clamp(2rem, 5vw, 3rem);
}

/* -------------------------------------------------------------------------
   12c. Single post & page
   ---------------------------------------------------------------------- */
.tt-single__head {
	background: var(--navy);
	color: var(--white);
	padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.tt-single__head-inner {
	max-width: 46rem;
}

.tt-single__title {
	margin-top: 0.4rem;
	font-size: clamp(1.8rem, 4.5vw, 2.8rem);
	font-weight: 700;
}

.tt-single__meta {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-top: 0.8rem;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
}

.tt-single__figure {
	margin-top: -1.5rem;
}

.tt-single__figure img {
	width: 100%;
	border-radius: var(--radius);
	box-shadow: var(--shadow-pop);
}

.tt-single__body {
	padding-top: clamp(1.8rem, 4vw, 2.6rem);
	padding-bottom: clamp(2rem, 5vw, 3rem);
}

/* Entry content typography (Gutenberg output) */
.tt-entry {
	max-width: 46rem;
	margin-inline: auto;
	font-size: 1.04rem;
	line-height: 1.75;
}

.tt-entry > * + * {
	margin-top: 1.1rem;
}

.tt-entry h2 {
	margin-top: 2rem;
	font-size: 1.45rem;
}

.tt-entry h3 {
	margin-top: 1.6rem;
	font-size: 1.15rem;
}

.tt-entry a {
	color: var(--gold);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.tt-entry a:hover {
	color: var(--navy);
}

.tt-entry ul,
.tt-entry ol {
	padding-left: 1.3rem;
	list-style: revert;
}

.tt-entry li + li {
	margin-top: 0.35rem;
}

.tt-entry blockquote {
	margin: 1.4rem 0;
	padding: 0.4rem 0 0.4rem 1.2rem;
	border-left: 3px solid var(--gold);
	color: var(--muted);
	font-style: italic;
}

.tt-entry img,
.tt-entry .wp-block-image img {
	border-radius: var(--radius);
}

.tt-entry figcaption {
	margin-top: 0.4rem;
	font-size: 0.8rem;
	color: var(--muted);
	text-align: center;
}

.tt-entry .alignwide {
	max-width: min(60rem, 100%);
	margin-inline: auto;
}

.tt-entry .wp-block-separator {
	border: 0;
	border-top: 1px solid var(--line);
}

.tt-entry__pages {
	margin-top: 1.4rem;
	font-weight: 600;
}

/* Tags */
.tt-taglist {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	max-width: 46rem;
	margin: 1.8rem auto 0;
}

.tt-taglist a {
	display: inline-block;
	padding: 0.3rem 0.85rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 0.8rem;
	text-decoration: none;
	color: var(--muted);
	background: var(--white);
	transition: border-color var(--speed) var(--ease), color var(--speed) var(--ease);
}

.tt-taglist a:hover {
	border-color: var(--gold);
	color: var(--navy);
}

/* Prev / next */
.tt-postnav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	max-width: 46rem;
	margin: 2rem auto 0;
	padding-top: 1.6rem;
	border-top: 1px solid var(--line);
}

.tt-postnav__item--next {
	text-align: right;
}

.tt-postnav__label {
	display: block;
	font-family: var(--font-display);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
}

.tt-postnav__item a {
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1.35;
	text-decoration: none;
	color: var(--ink);
}

.tt-postnav__item a:hover {
	color: var(--gold);
}

/* Related band */
.tt-related {
	background: var(--cream);
	border-top: 1px solid var(--line);
	padding: clamp(2rem, 5vw, 3rem) 0;
}

.tt-archive__grid--flush {
	padding: 0;
}

.tt-single__comments {
	padding-bottom: clamp(2rem, 5vw, 3rem);
	max-width: calc(46rem + 2 * var(--gutter));
}

/* -------------------------------------------------------------------------
   12d. Search: matching destinations strip
   ---------------------------------------------------------------------- */
.tt-search-destinations {
	background: var(--cream);
	border-bottom: 1px solid var(--line);
	padding: clamp(1.6rem, 4vw, 2.4rem) 0;
}

.tt-search-destinations__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.8rem;
}

.tt-dest-mini {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.7rem 0.9rem;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	text-decoration: none;
	transition: border-color var(--speed) var(--ease), transform var(--speed) var(--ease);
}

.tt-dest-mini:hover {
	border-color: var(--gold);
	transform: translateY(-2px);
}

.tt-dest-mini__logo {
	display: grid;
	place-items: center;
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 50%;
}

.tt-dest-mini__logo img {
	width: 30px;
	height: 30px;
	object-fit: contain;
}

.tt-dest-mini__text {
	flex: 1;
	min-width: 0;
}

.tt-dest-mini__town {
	display: block;
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ink);
}

.tt-dest-mini__team {
	display: block;
	font-size: 0.76rem;
	color: var(--muted);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.tt-dest-mini .tt-icon {
	color: var(--gold);
}

.tt-archive .tt-section-head {
	padding-top: clamp(1.6rem, 4vw, 2.2rem);
	margin-bottom: 0;
}

.tt-archive .tt-search-destinations .tt-section-head,
.tt-search-destinations .tt-section-head {
	padding-top: 0;
	margin-bottom: 1rem;
}

/* -------------------------------------------------------------------------
   14. Responsive
   ---------------------------------------------------------------------- */
@media (max-width: 1080px) {
	.tt-categories__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem 0;
	}

	.tt-category:nth-child(4) {
		border-left: 0;
	}

	.tt-editorial__grid {
		grid-template-columns: 1fr 1fr;
	}

	.tt-spotlight {
		grid-column: 1 / -1;
	}

	.tt-planner__benefits {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.2rem 0;
	}

	.tt-benefit:nth-child(3) {
		border-left: 0;
	}

	.tt-archive__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tt-search-destinations__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 900px) {
	/* Mobile nav */
	.tt-nav {
		position: fixed;
		inset: 74px 0 0 auto;
		width: min(20rem, 86vw);
		padding: 1.25rem;
		background: var(--navy-2);
		border-left: 1px solid var(--line-dark);
		box-shadow: var(--shadow-pop);
		transform: translateX(105%);
		transition: transform 240ms var(--ease);
		overflow-y: auto;
		z-index: 99;
	}

	.tt-nav.is-open {
		transform: translateX(0);
	}

	.tt-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0.1rem;
	}

	.tt-nav__list a {
		padding: 0.8rem 0.9rem;
		font-size: 1rem;
	}

	.tt-nav__list .sub-menu {
		position: static;
		min-width: 0;
		padding: 0 0 0 0.9rem;
		background: transparent;
		border: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.tt-nav__mobile-cta {
		display: block;
		margin-top: 1rem;
	}

	.tt-nav__mobile-cta .tt-btn {
		width: 100%;
		justify-content: center;
	}

	.tt-burger {
		display: inline-flex;
	}

	.tt-header__cta {
		display: none;
	}

	.tt-planner__card {
		grid-template-columns: 1fr;
		grid-template-areas:
			"intro"
			"benefits";
	}

	.tt-planner__phone {
		display: none;
	}
}

@media (max-width: 680px) {
	.tt-categories__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tt-category:nth-child(odd) {
		border-left: 0;
	}

	.tt-category:nth-child(3) {
		border-left: 1px solid var(--line);
	}

	.tt-editorial__grid {
		grid-template-columns: 1fr;
	}

	.tt-hero__search {
		flex-direction: column;
		padding: 0.6rem;
	}

	.tt-hero__field {
		padding: 0.35rem 0.4rem;
	}

	.tt-hero__go {
		justify-content: center;
	}

	.tt-newsletter__inner {
		flex-direction: column;
		align-items: stretch;
	}

	.tt-newsletter__form input[type="email"] {
		flex: 1;
		min-width: 0;
	}

	.tt-archive__grid {
		grid-template-columns: 1fr;
	}

	.tt-search-destinations__grid {
		grid-template-columns: 1fr;
	}

	.tt-detail__hero-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.tt-detail__facts-inner {
		gap: 1rem;
	}

	.tt-detail__cta {
		margin-left: 0;
		flex-basis: 100%;
		justify-content: center;
	}

	.tt-postnav {
		grid-template-columns: 1fr;
	}

	.tt-postnav__item--next {
		text-align: left;
	}

	.tt-rail-btn {
		display: none;
	}

	.tt-footer__inner {
		flex-direction: column;
	}
}

/* -------------------------------------------------------------------------
   15. Reduced motion
   ---------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}

	.tt-reveal {
		opacity: 1;
		transform: none;
	}
}

/* =========================================================================
   APPEND-ONLY EXTENSION — v1.1.1
   Inner template coverage beyond sections 12b–12d already in this file.
   Nothing below overrides homepage styling; selectors are additive.
   ========================================================================= */

/* -------------------------------------------------------------------------
   12e. Entry content — extended Gutenberg blocks
   (tables, code, pullquotes, buttons, embeds, galleries, full-bleed)
   ---------------------------------------------------------------------- */

/* WP outputs <figure> with UA margins; normalize inside entries. */
.tt-entry figure {
	margin: 1.4rem 0;
}

/* Full-width blocks break out of the 46rem measure and the container. */
.tt-entry .alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.tt-entry .alignfull img {
	border-radius: 0;
	width: 100%;
}

/* Tables */
.tt-entry .wp-block-table {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.tt-entry table {
	width: 100%;
	min-width: 480px;
	border-collapse: collapse;
	font-size: 0.94rem;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	overflow: hidden;
}

.tt-entry th,
.tt-entry td {
	padding: 0.65rem 0.9rem;
	text-align: left;
	border-bottom: 1px solid var(--line);
}

.tt-entry th {
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: var(--navy);
	color: var(--white);
	border-bottom: 2px solid var(--gold);
}

.tt-entry tbody tr:nth-child(even) {
	background: var(--paper);
}

.tt-entry tbody tr:last-child td {
	border-bottom: 0;
}

/* Code */
.tt-entry code,
.tt-entry kbd {
	padding: 0.15em 0.45em;
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: 6px;
	font-size: 0.88em;
}

.tt-entry pre,
.tt-entry .wp-block-code {
	padding: 1.1rem 1.3rem;
	background: var(--navy);
	color: #e8ecf4;
	border-radius: var(--radius);
	overflow-x: auto;
	font-size: 0.88rem;
	line-height: 1.6;
}

.tt-entry pre code,
.tt-entry .wp-block-code code {
	padding: 0;
	background: transparent;
	border: 0;
	color: inherit;
	font-size: inherit;
}

/* Quotes */
.tt-entry .wp-block-quote cite,
.tt-entry blockquote cite {
	display: block;
	margin-top: 0.6rem;
	font-style: normal;
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
}

.tt-entry .wp-block-pullquote {
	padding: 2rem 1.5rem;
	border-top: 3px solid var(--gold);
	border-bottom: 3px solid var(--gold);
	text-align: center;
}

.tt-entry .wp-block-pullquote blockquote {
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
}

.tt-entry .wp-block-pullquote p {
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.3;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: var(--navy);
}

/* Buttons */
.tt-entry .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	padding: 0.72rem 1.35rem;
	border-radius: var(--radius-sm);
	background: var(--gold);
	color: var(--navy);
	font-family: var(--font-display);
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background var(--speed) var(--ease), transform var(--speed) var(--ease);
}

.tt-entry .wp-block-button__link:hover {
	background: var(--gold-2);
	color: var(--navy);
	transform: translateY(-1px);
}

.tt-entry .is-style-outline .wp-block-button__link {
	background: transparent;
	border: 2px solid var(--navy);
	color: var(--navy);
}

.tt-entry .is-style-outline .wp-block-button__link:hover {
	background: var(--navy);
	color: var(--white);
}

/* Embeds */
.tt-entry .wp-block-embed__wrapper {
	border-radius: var(--radius);
	overflow: hidden;
}

.tt-entry .wp-block-embed iframe {
	max-width: 100%;
}

.tt-entry .wp-block-embed.is-type-video .wp-block-embed__wrapper {
	position: relative;
	aspect-ratio: 16 / 9;
}

.tt-entry .wp-block-embed.is-type-video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

/* Galleries */
.tt-entry .wp-block-gallery {
	gap: 0.6rem;
}

.tt-entry .wp-block-gallery img {
	border-radius: var(--radius-sm);
}

/* -------------------------------------------------------------------------
   12f. Comments & comment form
   (markup from theme comments.php: .tt-comments wrapper)
   ---------------------------------------------------------------------- */
.tt-comments {
	max-width: 46rem;
	margin-inline: auto;
	padding-top: 1.6rem;
	border-top: 1px solid var(--line);
}

.tt-comments__title,
.comment-reply-title {
	font-size: 1.15rem;
	letter-spacing: 0.04em;
	margin-bottom: 1rem;
}

.comment-list .comment,
.comment-list .pingback {
	padding: 1rem 0;
	border-bottom: 1px solid var(--line);
}

.comment-list .children {
	margin-top: 0.6rem;
	padding-left: clamp(1rem, 4vw, 2rem);
	border-left: 2px solid var(--line);
}

.comment-list .children .comment:last-child {
	border-bottom: 0;
}

.comment-meta {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	flex-wrap: wrap;
}

.comment-author .avatar {
	border-radius: 50%;
}

.comment-author .fn {
	font-weight: 600;
	font-style: normal;
}

.comment-metadata {
	font-size: 0.78rem;
	color: var(--muted);
}

.comment-metadata a {
	color: inherit;
	text-decoration: none;
}

.comment-metadata a:hover {
	color: var(--gold);
}

.comment-content {
	margin-top: 0.5rem;
	font-size: 0.96rem;
}

.comment-content p + p {
	margin-top: 0.6rem;
}

.reply {
	margin-top: 0.5rem;
}

.comment-reply-link {
	display: inline-block;
	padding: 0.3rem 0.85rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-family: var(--font-display);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--muted);
	transition: border-color var(--speed) var(--ease), color var(--speed) var(--ease);
}

.comment-reply-link:hover {
	border-color: var(--gold);
	color: var(--navy);
}

/* Form */
.comment-form {
	margin-top: 1.2rem;
}

.comment-form p {
	margin-top: 0.9rem;
}

.comment-form label {
	display: block;
	margin-bottom: 0.3rem;
	font-family: var(--font-display);
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 0.7rem 0.9rem;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	font-family: var(--font-body);
	font-size: 0.96rem;
	color: var(--ink);
	transition: border-color var(--speed) var(--ease);
}

.comment-form input:focus,
.comment-form textarea:focus {
	outline: none;
	border-color: var(--gold);
	box-shadow: 0 0 0 3px var(--gold-soft);
}

.comment-form .form-submit input[type="submit"] {
	padding: 0.72rem 1.5rem;
	border: 0;
	border-radius: var(--radius-sm);
	background: var(--gold);
	color: var(--navy);
	font-family: var(--font-display);
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background var(--speed) var(--ease);
}

.comment-form .form-submit input[type="submit"]:hover {
	background: var(--gold-2);
}

.comment-form-cookies-consent {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.comment-form-cookies-consent label {
	margin: 0;
	font-family: var(--font-body);
	font-size: 0.84rem;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
}

.comment-notes,
.logged-in-as {
	font-size: 0.84rem;
	color: var(--muted);
}

/* -------------------------------------------------------------------------
   12g. Loop grid card polish
   (fallback art, equal heights, page label, wrapping, focus)
   ---------------------------------------------------------------------- */

/* Equal heights: body flexes, meta pins to the bottom. */
.tt-post-card {
	display: flex;
	flex-direction: column;
}

.tt-post-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.tt-post-card__body .tt-article__meta {
	margin-top: auto;
	padding-top: 0.6rem;
}

/* Fallback state when a post has no featured image:
   navy gradient with a faint gold monogram, sitting under any real image. */
.tt-post-card__media {
	position: relative;
	background: linear-gradient(135deg, var(--navy-3), var(--navy) 70%);
}

.tt-post-card__media::before {
	content: "T&T";
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: rgba(196, 154, 63, 0.35);
}

.tt-post-card__media img {
	position: relative;
	z-index: 1;
}

/* Result-type label for pages in mixed results (post_class emits type-page). */
.tt-post-card.type-page .tt-post-card__body::before {
	content: "Page";
	font-family: var(--font-display);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold);
}

/* Long titles wrap instead of overflowing. */
.tt-post-card__title,
.tt-playbook__title,
.tt-article__title,
.tt-detail__title,
.tt-single__title,
.tt-archive__title {
	overflow-wrap: anywhere;
}

/* Card link focus ring that survives the overflow:hidden card. */
.tt-post-card__title a:focus-visible,
.tt-post-card__media:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 2px;
}

/* -------------------------------------------------------------------------
   12h. Search extras
   (mobile destination scroller, retry form, no-results)
   ---------------------------------------------------------------------- */

/* On-brand search form (searchform.php) used in empty states. */
.tt-searchform {
	display: flex;
	gap: 0.6rem;
	max-width: 30rem;
	margin-top: 1rem;
	padding: 0.4rem;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
}

.tt-searchform input[type="search"] {
	flex: 1;
	min-width: 0;
	padding: 0.5rem 0.7rem;
	border: 0;
	background: transparent;
	font-family: var(--font-body);
	font-size: 0.96rem;
	color: var(--ink);
}

.tt-searchform input[type="search"]:focus {
	outline: none;
}

.tt-empty .tt-searchform {
	margin-inline: 0;
}

/* -------------------------------------------------------------------------
   12i. Destination detail & single hero fallbacks
   ---------------------------------------------------------------------- */

/* No featured image: layered navy gradient with a low gold glow reads
   deliberate, not broken. Inline background-image overrides when present. */
.tt-detail__hero {
	background-image:
		radial-gradient(120% 90% at 85% 110%, rgba(196, 154, 63, 0.22), transparent 60%),
		linear-gradient(120deg, var(--navy-3), var(--navy) 65%);
	min-height: clamp(220px, 34vw, 380px);
	display: flex;
	align-items: flex-end;
}

.tt-detail__hero-inner {
	width: 100%;
}

/* Single post with no featured image: remove the overlap pull-up gap. */
.tt-single__head + .tt-single__body {
	padding-top: clamp(1.8rem, 4vw, 2.6rem);
}

/* -------------------------------------------------------------------------
   12j. Overflow, tap targets, a11y guards
   ---------------------------------------------------------------------- */
body {
	overflow-x: clip;
}

/* Comfortable tap targets. */
.tt-taglist a,
.comment-reply-link,
.tt-pagination .page-numbers {
	min-height: 40px;
	display: inline-flex;
	align-items: center;
}

.tt-taglist a {
	padding-block: 0.45rem;
}

/* Accessible underlines in running text (already on .tt-entry a); extend to
   comment content and archive descriptions. */
.comment-content a,
.tt-archive__desc a {
	color: var(--gold);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.comment-content a:hover,
.tt-archive__desc a:hover {
	color: var(--navy);
}

.tt-archive__desc a:hover {
	color: var(--gold-2);
}

/* -------------------------------------------------------------------------
   12k. Responsive additions for the inner templates
   ---------------------------------------------------------------------- */
@media (max-width: 680px) {
	/* Destination strip becomes a horizontal scroller. */
	.tt-search-destinations__grid {
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: min(78vw, 300px);
		grid-template-columns: none;
		overflow-x: auto;
		scroll-snap-type: x proximity;
		padding-bottom: 0.5rem;
		scrollbar-width: thin;
	}

	.tt-search-destinations__grid > li {
		scroll-snap-align: start;
	}

	/* Entry content: keep tables usable, media flush. */
	.tt-entry {
		font-size: 1rem;
	}

	.tt-entry table {
		min-width: 420px;
	}

	.tt-entry .wp-block-pullquote p {
		font-size: 1.15rem;
	}

	/* Single meta stacks tighter. */
	.tt-single__meta {
		font-size: 0.8rem;
	}

	.tt-single__figure {
		margin-top: -1rem;
	}

	/* Comments */
	.comment-list .children {
		padding-left: 0.8rem;
	}

	.tt-searchform {
		flex-direction: column;
		padding: 0.6rem;
	}

	.tt-searchform .tt-btn {
		justify-content: center;
	}
}

/* =========================================================================
   GUIDE SYSTEM EXTENSION — v1.2.0
   Sections 12l–12p. Additive only; nothing above is overridden.
   ========================================================================= */

/* -------------------------------------------------------------------------
   12l. Breadcrumbs & guide filter navigation
   ---------------------------------------------------------------------- */
.tt-crumbs {
	margin-bottom: 0.9rem;
}

.tt-crumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	font-size: 0.78rem;
}

.tt-crumbs li {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	color: rgba(255, 255, 255, 0.55);
}

.tt-crumbs li + li::before {
	content: "/";
	color: rgba(255, 255, 255, 0.3);
}

.tt-crumbs a {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	transition: color var(--speed) var(--ease);
}

.tt-crumbs a:hover {
	color: var(--gold-2);
}

.tt-crumbs [aria-current="page"] {
	color: var(--gold-2);
}

/* Filter bar: navy strip under the archive hero, scrollable when tight. */
.tt-guide-filter {
	background: var(--navy-2);
	border-top: 1px solid var(--line-dark);
	border-bottom: 1px solid var(--line-dark);
}

.tt-guide-filter__list {
	display: flex;
	gap: 0.4rem;
	overflow-x: auto;
	padding: 0.7rem 0;
	scrollbar-width: thin;
	scrollbar-color: var(--navy-3) transparent;
}

.tt-guide-filter__link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.45rem 1rem;
	border: 1px solid var(--line-dark);
	border-radius: 999px;
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	color: rgba(255, 255, 255, 0.8);
	transition: color var(--speed) var(--ease), border-color var(--speed) var(--ease), background var(--speed) var(--ease);
}

.tt-guide-filter__link:hover {
	border-color: var(--gold);
	color: var(--gold-2);
}

.tt-guide-filter__link.is-active {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--navy);
}

.tt-guide-filter__count {
	font-size: 0.68rem;
	opacity: 0.7;
}

/* -------------------------------------------------------------------------
   12m. Guide cards & archive grid
   ---------------------------------------------------------------------- */
.tt-guides-archive__grid-wrap {
	padding-top: clamp(1.8rem, 4vw, 2.6rem);
	padding-bottom: clamp(2rem, 5vw, 3rem);
}

.tt-guide-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.tt-guide-card {
	display: flex;
	flex-direction: column;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed) var(--ease);
}

.tt-guide-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-pop);
}

.tt-guide-card--featured {
	border-color: var(--gold);
}

.tt-guide-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, var(--navy-3), var(--navy) 70%);
	overflow: hidden;
}

.tt-guide-card__media::before {
	content: "T&T";
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: rgba(196, 154, 63, 0.35);
}

.tt-guide-card__media img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms var(--ease);
}

.tt-guide-card:hover .tt-guide-card__media img {
	transform: scale(1.04);
}

.tt-guide-card__media .tt-chip {
	position: absolute;
	top: 0.8rem;
	left: 0.8rem;
	z-index: 2;
}

.tt-guide-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1.1rem 1.2rem 1.2rem;
}

.tt-guide-card__labels {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	flex-wrap: wrap;
}

.tt-guide-card__dest {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	font-size: 0.76rem;
	color: var(--muted);
}

.tt-guide-card__title {
	margin-top: 0.4rem;
	font-family: var(--font-body);
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.35;
	text-transform: none;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.tt-guide-card__title a {
	text-decoration: none;
	color: inherit;
	transition: color var(--speed) var(--ease);
}

.tt-guide-card__title a:hover {
	color: var(--gold);
}

.tt-guide-card__title a:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 2px;
}

.tt-guide-card__summary {
	margin-top: 0.45rem;
	font-size: 0.88rem;
	color: var(--muted);
}

.tt-guide-card__body .tt-article__meta {
	margin-top: auto;
	padding-top: 0.6rem;
}

/* Featured guide slot on the archive. */
.tt-guide-featured {
	background: var(--cream);
	border-bottom: 1px solid var(--line);
	padding: clamp(1.8rem, 4.5vw, 2.8rem) 0;
}

.tt-guide-hero {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	background: var(--white);
	border: 1px solid var(--gold);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-pop);
}

.tt-guide-hero__media {
	display: block;
	min-height: 280px;
	background: linear-gradient(135deg, var(--navy-3), var(--navy) 70%);
}

.tt-guide-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tt-guide-hero__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.55rem;
	padding: clamp(1.4rem, 3.5vw, 2.2rem);
}

.tt-guide-hero__title {
	font-size: clamp(1.3rem, 2.8vw, 1.7rem);
	letter-spacing: 0.02em;
}

.tt-guide-hero__title a {
	text-decoration: none;
	color: inherit;
	transition: color var(--speed) var(--ease);
}

.tt-guide-hero__title a:hover {
	color: var(--gold);
}

.tt-guide-hero__summary {
	color: var(--muted);
	font-size: 0.95rem;
}

.tt-guide-hero__cta {
	margin-top: 0.4rem;
}

/* -------------------------------------------------------------------------
   12n. Single guide layout & table of contents
   ---------------------------------------------------------------------- */
.tt-guide__head {
	background: var(--navy);
	color: var(--white);
	padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.tt-guide__head-inner {
	max-width: 52rem;
}

.tt-guide__type {
	text-decoration: none;
}

.tt-guide__type:hover {
	color: var(--gold-2);
}

.tt-guide__title {
	margin-top: 0.4rem;
	font-size: clamp(1.8rem, 4.5vw, 2.8rem);
	font-weight: 700;
	overflow-wrap: anywhere;
}

.tt-guide__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 1.2rem;
	margin-top: 0.9rem;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.75);
}

.tt-guide__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: inherit;
	text-decoration: none;
}

.tt-guide__meta-item .tt-icon {
	color: var(--gold-2);
}

a.tt-guide__meta-item:hover {
	color: var(--gold-2);
}

/* Two-column reading layout with sticky aside. */
.tt-guide__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 260px;
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: start;
	padding-top: clamp(1.8rem, 4vw, 2.6rem);
	padding-bottom: clamp(2rem, 5vw, 3rem);
}

.tt-guide__main .tt-entry {
	margin-inline: 0;
}

.tt-guide__aside {
	position: sticky;
	top: 96px;
}

.tt-toc {
	padding: 1.1rem 1.2rem;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
}

.tt-toc__label {
	display: block;
	margin-bottom: 0.6rem;
	font-family: var(--font-display);
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
}

.tt-toc__list {
	display: flex;
	flex-direction: column;
	counter-reset: none;
}

.tt-toc__item a {
	display: block;
	padding: 0.35rem 0.6rem;
	border-left: 2px solid var(--line);
	font-size: 0.85rem;
	line-height: 1.4;
	text-decoration: none;
	color: var(--muted);
	transition: color var(--speed) var(--ease), border-color var(--speed) var(--ease);
}

.tt-toc__item--h3 a {
	padding-left: 1.4rem;
	font-size: 0.8rem;
}

.tt-toc__item a:hover {
	color: var(--navy);
	border-color: var(--gold);
}

.tt-toc__item a.is-active {
	color: var(--navy);
	border-color: var(--gold);
	font-weight: 600;
}

/* Mobile disclosure. */
.tt-toc-mobile {
	display: none;
	margin-bottom: 1.4rem;
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}

.tt-toc-mobile summary {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.85rem 1.1rem;
	font-family: var(--font-display);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	list-style: none;
	color: var(--navy);
}

.tt-toc-mobile summary::-webkit-details-marker {
	display: none;
}

.tt-toc-mobile summary::after {
	content: "+";
	margin-left: auto;
	font-size: 1.1rem;
	color: var(--gold);
}

.tt-toc-mobile[open] summary::after {
	content: "\2013";
}

.tt-toc-mobile .tt-toc__list {
	padding: 0 1.1rem 1rem;
}

.tt-toc-mobile summary .tt-icon {
	color: var(--gold);
}

/* Primary CTA band at the end of the guide body. */
.tt-guide__cta-band {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.2rem;
	flex-wrap: wrap;
	margin-top: 2.2rem;
	padding: 1.3rem 1.5rem;
	background: var(--navy);
	border-radius: var(--radius);
	color: var(--white);
}

.tt-guide__cta-band p {
	margin-top: 0.15rem;
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

/* -------------------------------------------------------------------------
   12o. Related guides & destination guide groups
   ---------------------------------------------------------------------- */
.tt-guide-grid--related {
	margin-top: 0.4rem;
}

.tt-guide__articles {
	background: var(--paper);
	padding: clamp(2rem, 5vw, 3rem) 0;
}

.tt-dest-guides {
	background: var(--cream);
	border-top: 1px solid var(--line);
	padding: clamp(2rem, 5vw, 3rem) 0;
	scroll-margin-top: 90px;
}

.tt-dest-guides__group + .tt-dest-guides__group {
	margin-top: 2rem;
}

.tt-dest-guides__type {
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--gold);
	display: inline-block;
	font-size: 1.05rem;
	letter-spacing: 0.05em;
}

.tt-dest-guides__type a {
	text-decoration: none;
	color: inherit;
	transition: color var(--speed) var(--ease);
}

.tt-dest-guides__type a:hover {
	color: var(--gold);
}

/* -------------------------------------------------------------------------
   12p. Guide system responsive
   ---------------------------------------------------------------------- */
@media (max-width: 1080px) {
	.tt-guide-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 900px) {
	.tt-guide__layout {
		grid-template-columns: 1fr;
	}

	.tt-guide__aside {
		display: none;
	}

	.tt-toc-mobile {
		display: block;
	}

	.tt-guide-hero {
		grid-template-columns: 1fr;
	}

	.tt-guide-hero__media {
		min-height: 200px;
		aspect-ratio: 16 / 9;
	}
}

@media (max-width: 680px) {
	.tt-guide-grid {
		grid-template-columns: 1fr;
	}

	.tt-guide__cta-band {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	.tt-guide__cta-band .tt-btn {
		justify-content: center;
	}

	.tt-guide__meta {
		gap: 0.35rem 0.9rem;
		font-size: 0.8rem;
	}
}

/* =========================================================================
   12q. Trip Planner: hero, progress, steps
   ========================================================================= */

.tt-planner-hero {
	background:
		radial-gradient(60rem 30rem at 85% -20%, rgba(196, 154, 63, 0.16), transparent 60%),
		linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
	color: var(--cream);
	padding: clamp(3.2rem, 7vw, 5.5rem) 0 clamp(2.4rem, 5vw, 4rem);
	border-bottom: 1px solid rgba(196, 154, 63, 0.25);
}

.tt-planner-hero__inner {
	max-width: 46rem;
}

.tt-planner-hero__title {
	font-family: var(--font-display);
	font-size: clamp(2.1rem, 5vw, 3.4rem);
	line-height: 1.05;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	margin: 0.6rem 0 0.9rem;
}

.tt-planner-hero__text {
	color: rgba(243, 238, 226, 0.82);
	font-size: 1.05rem;
	line-height: 1.65;
	margin: 0;
}

.tt-planner-wrap {
	padding: clamp(2rem, 4.5vw, 3.4rem) 1.25rem clamp(3rem, 6vw, 4.5rem);
	max-width: 56rem;
}

.tt-planner-progress {
	margin-bottom: 1.8rem;
}

.tt-planner-progress__count {
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.82rem;
	color: var(--gold);
	margin: 0 0 0.5rem;
}

.tt-planner-progress__track {
	height: 6px;
	border-radius: 999px;
	background: var(--line);
	overflow: hidden;
}

.tt-planner-progress__bar {
	height: 100%;
	width: 12.5%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--gold), var(--gold-2));
	transition: width 0.35s ease;
}

.tt-planner-progress__steps {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 1rem;
	margin: 0.7rem 0 0;
	padding: 0;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	color: rgba(26, 35, 51, 0.45);
}

.tt-planner-progress__steps .is-done {
	color: rgba(26, 35, 51, 0.7);
}

.tt-planner-progress__steps .is-current {
	color: var(--gold);
	font-weight: 600;
}

.tt-planner-errors {
	background: #fdf3f2;
	border: 1px solid #e5b4ad;
	border-left: 4px solid #b3392b;
	border-radius: var(--radius-sm);
	padding: 0.9rem 1.1rem;
	margin-bottom: 1.4rem;
	color: #7c2418;
}

.tt-planner-errors:focus {
	outline: 2px solid #b3392b;
	outline-offset: 2px;
}

.tt-planner-errors p {
	margin: 0 0 0.35rem;
	font-weight: 600;
}

.tt-planner-errors ul {
	margin: 0;
	padding-left: 1.2rem;
}

.tt-planner-step {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: clamp(1.4rem, 3.5vw, 2.2rem);
	margin-bottom: 1.6rem;
}

.tt-planner-step > fieldset,
.tt-planner-sub {
	border: 0;
	margin: 0;
	padding: 0;
	min-width: 0;
}

.tt-planner-step__head {
	display: block;
	margin-bottom: 1.2rem;
	padding: 0;
}

.tt-planner-step__title {
	font-family: var(--font-display);
	font-size: clamp(1.4rem, 3vw, 1.9rem);
	text-transform: uppercase;
	letter-spacing: 0.01em;
	margin: 0.35rem 0 0;
	color: var(--ink);
}

.tt-planner-step__title:focus {
	outline: none;
}

.tt-planner-step__title:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 4px;
}

.tt-planner-sub {
	margin-top: 1.4rem;
}

.tt-planner-sub > legend {
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.85rem;
	color: var(--ink);
	margin-bottom: 0.7rem;
	padding: 0;
}

/* =========================================================================
   12r. Trip Planner: fields, chips, destination cards
   ========================================================================= */

.tt-planner-grid {
	display: grid;
	gap: 1rem;
}

.tt-planner-grid--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tt-planner-field {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.tt-planner-field--narrow {
	max-width: 24rem;
	margin-top: 1rem;
}

.tt-planner-field--search {
	margin-bottom: 1.1rem;
}

.tt-planner-field label {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--ink);
}

.tt-planner-field input,
.tt-planner-field select {
	font: inherit;
	color: var(--ink);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 0.75rem 0.9rem;
	min-height: 48px;
	width: 100%;
}

.tt-planner-field input:focus-visible,
.tt-planner-field select:focus-visible,
.tt-chip-input input:focus-visible + span,
.tt-planner-agree input:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 2px;
}

.tt-field-invalid {
	border-color: #b3392b !important;
	background: #fdf7f6;
}

.tt-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.tt-chip-input {
	position: relative;
	display: inline-flex;
}

.tt-chip-input input {
	position: absolute;
	inset: 0;
	opacity: 0.001;
	width: 100%;
	height: 100%;
	margin: 0;
	cursor: pointer;
}

.tt-chip-input span {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	min-height: 44px;
	padding: 0.55rem 1.05rem;
	border: 1.5px solid var(--line);
	border-radius: 999px;
	background: #fff;
	color: var(--ink);
	font-size: 0.92rem;
	line-height: 1.2;
	transition: border-color 0.15s ease, background-color 0.15s ease;
}

.tt-chip-input input:checked + span {
	border-color: var(--gold);
	background: rgba(196, 154, 63, 0.12);
	font-weight: 600;
}

/* Non-color selection indicator. */
.tt-chip-input input:checked + span::before {
	content: "✓";
	font-weight: 700;
	color: var(--gold);
}

.tt-planner-dests {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.tt-planner-dest {
	position: relative;
	display: block;
	cursor: pointer;
}

.tt-planner-dest input {
	position: absolute;
	inset: 0;
	opacity: 0.001;
	width: 100%;
	height: 100%;
	margin: 0;
	cursor: pointer;
}

.tt-planner-dest__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fff;
	border: 1.5px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.tt-planner-dest:hover .tt-planner-dest__card {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(13, 21, 36, 0.1);
}

.tt-planner-dest input:checked + .tt-planner-dest__card {
	border-color: var(--gold);
	box-shadow: 0 0 0 2px rgba(196, 154, 63, 0.35);
}

.tt-planner-dest input:focus-visible + .tt-planner-dest__card {
	outline: 2px solid var(--gold);
	outline-offset: 2px;
}

.tt-planner-dest__media {
	position: relative;
	aspect-ratio: 16 / 10;
	background: linear-gradient(150deg, var(--navy), var(--navy-3));
}

.tt-planner-dest__media > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tt-planner-dest__logo {
	position: absolute;
	left: 0.8rem;
	bottom: -1.1rem;
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--gold);
	display: grid;
	place-items: center;
	overflow: hidden;
	z-index: 2;
}

.tt-planner-dest__logo img {
	position: static;
	width: 78%;
	height: 78%;
	object-fit: contain;
}

.tt-planner-dest__body {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	padding: 1.5rem 1rem 1rem;
}

.tt-planner-dest__town {
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	font-size: 1.05rem;
	color: var(--ink);
}

.tt-planner-dest__team {
	font-size: 0.85rem;
	color: rgba(26, 35, 51, 0.65);
}

.tt-planner-dest__game {
	font-size: 0.78rem;
	color: var(--gold);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-top: 0.25rem;
}

.tt-planner-dest__check {
	position: absolute;
	top: 0.7rem;
	right: 0.7rem;
	width: 1.9rem;
	height: 1.9rem;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--gold);
	color: var(--navy);
	opacity: 0;
	transform: scale(0.8);
	transition: opacity 0.15s ease, transform 0.15s ease;
	z-index: 2;
}

.tt-planner-dest input:checked ~ .tt-planner-dest__card .tt-planner-dest__check,
.tt-planner-dest input:checked + .tt-planner-dest__card .tt-planner-dest__check {
	opacity: 1;
	transform: scale(1);
}

.tt-planner-suggest {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.6rem;
	background: rgba(196, 154, 63, 0.1);
	border: 1px dashed var(--gold);
	border-radius: var(--radius-sm);
	padding: 0.75rem 1rem;
	margin: 0 0 1.2rem;
	font-size: 0.92rem;
}

.tt-planner-suggest__btn {
	font: inherit;
	font-weight: 600;
	color: var(--navy);
	background: #fff;
	border: 1px solid var(--gold);
	border-radius: 999px;
	padding: 0.4rem 0.95rem;
	cursor: pointer;
	min-height: 40px;
}

.tt-planner-suggest__btn:hover {
	background: var(--gold);
}

/* =========================================================================
   12s. Trip Planner: review, disclaimer, navigation
   ========================================================================= */

.tt-planner-review {
	display: grid;
	grid-template-columns: 11rem 1fr;
	gap: 0.55rem 1.2rem;
	margin: 0 0 1.4rem;
	padding: 1.1rem 1.2rem;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
}

.tt-planner-review dt {
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.78rem;
	color: rgba(26, 35, 51, 0.55);
	padding-top: 0.15rem;
}

.tt-planner-review dd {
	margin: 0;
	font-size: 0.95rem;
	color: var(--ink);
}

.tt-planner-review__edit {
	font: inherit;
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--gold);
	background: none;
	border: 0;
	padding: 0.15rem 0.3rem;
	margin-left: 0.3rem;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.tt-planner-disclaimer {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 1rem 1.1rem;
	margin-bottom: 1.4rem;
}

.tt-planner-agree {
	display: flex;
	gap: 0.7rem;
	align-items: flex-start;
	cursor: pointer;
	font-size: 0.92rem;
	line-height: 1.55;
	color: var(--ink);
}

.tt-planner-agree input {
	width: 1.25rem;
	height: 1.25rem;
	margin-top: 0.15rem;
	accent-color: var(--gold);
	flex-shrink: 0;
}

.tt-planner-generate {
	width: 100%;
	justify-content: center;
	font-size: 1rem;
	padding: 0.95rem 1.4rem;
}

.tt-planner-nav {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 0.4rem;
}

.tt-planner-nav .tt-btn {
	min-width: 9rem;
	justify-content: center;
}

.tt-planner-nav__back {
	background: transparent;
	color: var(--ink);
	border: 1.5px solid var(--line);
}

.tt-planner-nav__back:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

/* Honeypot: visually removed, still in the accessibility tree of bots only. */
.tt-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Steps behave as one long page until JS enhances the form. */
body:not(.tt-planner-enhanced) .tt-planner-step[data-tt-step] {
	display: block !important;
}

body.tt-planner-enhanced .tt-planner-step[hidden] {
	display: none;
}

body:not(.tt-planner-enhanced) [data-tt-child-ages][hidden],
body:not(.tt-planner-enhanced) [data-tt-lodging-details][hidden] {
	display: block;
}

/* =========================================================================
   12t. Trip Planner: results, itinerary timeline, budget
   ========================================================================= */

.tt-planner-results {
	padding: clamp(2rem, 4.5vw, 3.5rem) 0 clamp(3rem, 6vw, 4.5rem);
	background: var(--cream);
}

.tt-planner-results__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 21rem;
	gap: 2.2rem;
	align-items: start;
}

.tt-planner-results__head {
	margin-bottom: 1.8rem;
}

.tt-planner-results__title {
	font-family: var(--font-display);
	font-size: clamp(1.9rem, 4.2vw, 2.9rem);
	text-transform: uppercase;
	letter-spacing: 0.01em;
	color: var(--ink);
	margin: 0.7rem 0 0.5rem;
}

.tt-planner-results__sub {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0;
	color: rgba(26, 35, 51, 0.65);
	font-size: 0.95rem;
}

.tt-itinerary {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}

.tt-itinerary::before {
	content: "";
	position: absolute;
	left: 0.55rem;
	top: 0.6rem;
	bottom: 0.6rem;
	width: 2px;
	background: linear-gradient(180deg, var(--gold), rgba(196, 154, 63, 0.2));
}

.tt-itinerary__item {
	position: relative;
	padding: 0 0 1.4rem 2.4rem;
}

.tt-itinerary__item:last-child {
	padding-bottom: 0;
}

.tt-itinerary__marker {
	position: absolute;
	left: 0;
	top: 0.55rem;
	width: 1.2rem;
	height: 1.2rem;
	border-radius: 50%;
	background: var(--paper);
	border: 3px solid var(--gold);
}

.tt-itinerary__card {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.2rem 1.4rem;
}

.tt-itinerary__when {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--gold);
}

.tt-itinerary__title {
	font-family: var(--font-display);
	font-size: 1.35rem;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	color: var(--ink);
	margin: 0.25rem 0 0.5rem;
}

.tt-itinerary__copy {
	margin: 0;
	color: rgba(26, 35, 51, 0.78);
	line-height: 1.6;
	font-size: 0.95rem;
}

.tt-itinerary__links {
	list-style: none;
	margin: 0.9rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.6rem;
}

.tt-itinerary__links a {
	display: block;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 0.75rem 0.95rem;
	text-decoration: none;
	transition: border-color 0.15s ease, transform 0.15s ease;
}

.tt-itinerary__links a:hover {
	border-color: var(--gold);
	transform: translateX(3px);
}

.tt-itinerary__link-type {
	display: block;
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--gold);
}

.tt-itinerary__link-title {
	display: block;
	font-weight: 600;
	color: var(--ink);
	margin-top: 0.1rem;
}

.tt-itinerary__link-summary {
	display: block;
	font-size: 0.85rem;
	color: rgba(26, 35, 51, 0.62);
	margin-top: 0.15rem;
	line-height: 1.5;
}

.tt-itinerary__placeholder {
	margin: 0.8rem 0 0;
	font-size: 0.88rem;
	font-style: italic;
	color: rgba(26, 35, 51, 0.55);
}

.tt-planner-results__disclaimer {
	margin: 1.6rem 0 0;
	font-size: 0.82rem;
	color: rgba(26, 35, 51, 0.6);
	line-height: 1.6;
}

.tt-planner-results__aside {
	position: sticky;
	top: 96px;
	display: grid;
	gap: 1.2rem;
}

.tt-budget-card {
	background: var(--navy);
	color: var(--cream);
	border-radius: var(--radius);
	padding: 1.4rem 1.5rem;
	border: 1px solid rgba(196, 154, 63, 0.35);
}

.tt-budget-card__title {
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 1rem;
	margin: 0 0 0.4rem;
	color: var(--gold-2);
}

.tt-budget-card__range {
	font-family: var(--font-display);
	font-size: 1.9rem;
	margin: 0 0 1rem;
	letter-spacing: 0.01em;
}

.tt-budget-card__rows {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}

.tt-budget-card__rows li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: baseline;
	border-bottom: 1px solid rgba(243, 238, 226, 0.12);
	padding-bottom: 0.65rem;
}

.tt-budget-card__rows li:last-child {
	border-bottom: 0;
}

.tt-budget-card__label {
	font-size: 0.9rem;
}

.tt-budget-card__label small {
	display: block;
	font-size: 0.72rem;
	color: rgba(243, 238, 226, 0.55);
	margin-top: 0.1rem;
}

.tt-budget-card__amount {
	font-weight: 600;
	white-space: nowrap;
}

.tt-budget-card__note {
	margin: 1rem 0 0;
	font-size: 0.75rem;
	color: rgba(243, 238, 226, 0.6);
	line-height: 1.5;
}

.tt-planner-actions {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.3rem 1.4rem;
	display: grid;
	gap: 0.7rem;
}

.tt-planner-actions .tt-btn {
	width: 100%;
	justify-content: center;
}

.tt-planner-actions__ghost {
	background: transparent;
	color: var(--ink);
	border: 1.5px solid var(--line);
}

.tt-planner-actions__ghost:hover {
	border-color: var(--gold);
}

.tt-planner-actions__note {
	font-size: 0.8rem;
	color: var(--gold);
	min-height: 1em;
	text-align: center;
}

.tt-planner-emailform {
	margin-top: 0.4rem;
	padding-top: 1rem;
	border-top: 1px solid var(--line);
}

.tt-planner-emailform > label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 0.45rem;
}

.tt-planner-emailform__row {
	display: flex;
	gap: 0.5rem;
}

.tt-planner-emailform__row input {
	flex: 1;
	min-width: 0;
	font: inherit;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 0.65rem 0.85rem;
	min-height: 48px;
}

.tt-planner-emailform__row input:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 2px;
}

.tt-planner-emailform__msg {
	margin: 0.6rem 0 0;
	font-size: 0.85rem;
	color: #7c2418;
}

.tt-planner-emailform__msg--ok {
	color: #2c6e49;
}

.tt-planner-emailform__privacy {
	margin: 0.5rem 0 0;
	font-size: 0.72rem;
	color: rgba(26, 35, 51, 0.5);
}

.tt-planner-actions__restart {
	text-align: center;
	font-size: 0.85rem;
	font-weight: 600;
	color: rgba(26, 35, 51, 0.6);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.tt-planner-actions__restart:hover {
	color: var(--ink);
}

/* =========================================================================
   12u. Trip Planner: responsive + print
   ========================================================================= */

@media (max-width: 900px) {
	.tt-planner-results__layout {
		grid-template-columns: 1fr;
	}

	.tt-planner-results__aside {
		position: static;
	}
}

@media (max-width: 680px) {
	.tt-planner-grid--2,
	.tt-planner-dests {
		grid-template-columns: 1fr;
	}

	.tt-planner-review {
		grid-template-columns: 1fr;
		gap: 0.15rem 0;
	}

	.tt-planner-review dd {
		margin-bottom: 0.6rem;
	}

	.tt-planner-progress__steps {
		display: none;
	}

	/* Mobile bottom navigation for Back / Continue. */
	body.tt-planner-enhanced .tt-planner-nav {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 40;
		margin: 0;
		padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
		background: rgba(250, 247, 240, 0.96);
		backdrop-filter: blur(8px);
		border-top: 1px solid var(--line);
	}

	body.tt-planner-enhanced .tt-planner-wrap {
		padding-bottom: 6.5rem;
	}

	.tt-planner-nav .tt-btn {
		min-width: 0;
		flex: 1;
	}
}

@media print {
	.tt-site-header,
	.tt-site-footer,
	.tt-planner-hero,
	.tt-planner-actions,
	.tt-planner-emailform,
	#tt-planner-live {
		display: none !important;
	}

	.tt-planner-results {
		background: #fff;
		padding: 0;
	}

	.tt-planner-results__layout {
		display: block;
	}

	.tt-planner-results__title,
	.tt-itinerary__title {
		color: #000;
	}

	.tt-itinerary::before {
		display: none;
	}

	.tt-itinerary__item {
		padding-left: 0;
		page-break-inside: avoid;
	}

	.tt-itinerary__marker {
		display: none;
	}

	.tt-itinerary__card,
	.tt-itinerary__links a {
		border-color: #ccc;
		background: #fff;
	}

	.tt-budget-card {
		background: #fff;
		color: #000;
		border: 1px solid #ccc;
		margin-top: 1.5rem;
	}

	.tt-budget-card__title,
	.tt-budget-card__range {
		color: #000;
	}

	.tt-budget-card__label small,
	.tt-budget-card__note {
		color: #444;
	}

	.tt-itinerary__links a::after {
		content: " (" attr(href) ")";
		font-size: 0.7rem;
		color: #555;
	}
}
