/* ===================================================================
   RESET / BASE
   =================================================================== */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
	margin:0; background:var(--stone); color:var(--ink);
	font-family:var(--font-body); font-size:16px; line-height:1.6;
}
img{ max-width:100%; display:block; }
a{ color:inherit; }
.tmt-container{ max-width:var(--max-w); margin:0 auto; padding:0 24px; }
h1,h2,h3{ font-family:var(--font-display); font-weight:600; margin:0 0 .5em; line-height:1.12; }
.tmt-eyebrow{
	font-family:var(--font-mono); font-size:12px; letter-spacing:.14em; text-transform:uppercase;
	color:var(--gilt); display:block; margin-bottom:10px;
}
@media (prefers-reduced-motion: reduce){ *{ animation:none !important; transition:none !important; } }

/* ===================================================================
   HEADER
   =================================================================== */
.tmt-site-header{
	background:var(--jungle); color:var(--white); position:sticky; top:0; z-index:50;
	border-bottom:3px solid var(--gilt);
}
.tmt-header-inner{ display:flex; align-items:center; justify-content:space-between; gap:20px; padding:12px 24px; flex-wrap:wrap; }
.tmt-logo{ display:flex; align-items:center; height:40px; flex-shrink:0; }
.tmt-logo a{
	display:flex; align-items:center; height:100%; font-family:var(--font-display);
	font-size:22px; font-weight:600; color:var(--white); text-decoration:none;
}
.tmt-logo img,
.tmt-logo .custom-logo{
	max-height:40px !important; max-width:150px !important; width:auto !important; height:auto !important;
	object-fit:contain; object-position:left center; display:block;
}
.custom-logo-link{ display:flex; align-items:center; height:100%; }
.tmt-nav{ display:flex; align-items:center; flex:1; justify-content:center; min-width:200px; }
.tmt-nav ul{ display:flex; align-items:center; }
.tmt-nav ul{ list-style:none; display:flex; gap:28px; margin:0; padding:0; }
.tmt-nav a{ text-decoration:none; font-size:14px; letter-spacing:.03em; color:var(--white); opacity:.85; }
.tmt-nav a:hover{ opacity:1; color:var(--gilt-light); }
.tmt-header-cta{
	background:var(--gilt); color:var(--jungle); font-weight:600; padding:9px 18px; border-radius:var(--radius);
	text-decoration:none; font-size:14px;
}

/* ===================================================================
   HERO
   =================================================================== */
.tmt-hero{
	position:relative; background:linear-gradient(180deg,var(--jungle) 0%, var(--jungle-2) 100%);
	color:var(--white); padding:90px 24px 70px; overflow:hidden;
}
.tmt-hero::after{
	content:""; position:absolute; inset:0; opacity:.14; pointer-events:none;
	background-image:
		radial-gradient(circle at 20% 30%, rgba(217,142,43,.9) 0 1.5px, transparent 1.5px),
		radial-gradient(circle at 60% 65%, rgba(217,142,43,.7) 0 1px, transparent 1px),
		radial-gradient(circle at 85% 20%, rgba(217,142,43,.6) 0 1.5px, transparent 1.5px),
		radial-gradient(circle at 40% 85%, rgba(217,142,43,.5) 0 1px, transparent 1px);
	background-size:140px 140px, 90px 90px, 170px 170px, 110px 110px;
}
.tmt-hero-inner{ position:relative; max-width:720px; }
.tmt-hero h1{ font-size:clamp(34px,5vw,56px); color:var(--white); }
.tmt-hero p{ font-size:18px; color:#cdd2c4; max-width:560px; }
.tmt-hero .tmt-cta{ margin-top:26px; }

/* Search bar — overlaps the bottom edge of the hero */
.tmt-search-bar{
	position:relative; margin-top:34px; background:var(--paper); border:1px solid var(--stone-dark);
	border-radius:var(--radius); padding:18px 22px; display:flex; gap:18px; align-items:flex-end;
	flex-wrap:wrap; box-shadow:0 14px 30px rgba(0,0,0,.25);
}
.tmt-search-field{ display:flex; flex-direction:column; gap:5px; flex:1; min-width:160px; }
.tmt-search-field label{ font-family:var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.08em; color:#5f665c; }
.tmt-search-field select{
	padding:10px 12px; border:1px solid var(--stone-dark); background:var(--white); border-radius:var(--radius);
	font-family:var(--font-body); font-size:14px; color:var(--ink);
}
.tmt-search-bar .tmt-cta{ align-self:stretch; }

/* Category tiles */
.tmt-category-tiles{ display:flex; gap:14px; flex-wrap:wrap; padding:44px 0 10px; }
.tmt-category-tile{
	flex:1; min-width:160px; background:var(--paper); border:1px solid var(--stone-dark); border-left:4px solid var(--gilt);
	padding:16px 18px; text-decoration:none; color:var(--ink); border-radius:var(--radius);
}
.tmt-category-tile:hover{ border-left-color:var(--brick); }
.tmt-cat-name{ display:block; font-family:var(--font-display); font-size:17px; font-weight:600; }
.tmt-cat-count{ display:block; font-family:var(--font-mono); font-size:11px; color:#5f665c; margin-top:4px; text-transform:uppercase; letter-spacing:.06em; }


/* ===================================================================
   BUTTONS
   =================================================================== */
.tmt-cta{
	display:inline-block; background:var(--brick); color:var(--white); text-decoration:none;
	padding:13px 26px; font-weight:600; border-radius:var(--radius); border:1px solid transparent;
	font-size:15px; letter-spacing:.02em; cursor:pointer;
}
.tmt-cta:hover{ background:#7e2f21; }
.tmt-cta-ghost{
	background:transparent; border:1px solid var(--white); color:var(--white);
}
.tmt-cta-ghost:hover{ background:rgba(255,255,255,.1); }

/* ===================================================================
   TOUR CARDS (archive / listing)
   =================================================================== */
.tmt-tour-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:26px; padding:60px 0; }
.tmt-tour-card{
	background:var(--paper); border:1px solid var(--stone-dark); border-radius:var(--radius);
	overflow:hidden; text-decoration:none; color:var(--ink); display:flex; flex-direction:column;
	transition:transform .15s ease, box-shadow .15s ease;
}
.tmt-tour-card:hover{ transform:translateY(-3px); box-shadow:0 10px 24px rgba(21,48,61,.14); }
.tmt-tour-card .tmt-thumb{ aspect-ratio:4/3; background:var(--stone-dark) center/cover no-repeat; }
.tmt-tour-card-body{ padding:18px 20px 22px; flex:1; display:flex; flex-direction:column; }
.tmt-tour-card h3{ font-size:20px; margin-bottom:8px; }
.tmt-meta-row{ font-family:var(--font-mono); font-size:12px; color:#5f665c; display:flex; gap:14px; margin-bottom:10px; }
.tmt-tour-card .tmt-price{ margin-top:auto; font-weight:700; color:var(--brick); font-size:18px; }

/* ===================================================================
   SINGLE TOUR
   =================================================================== */
.tmt-tour-hero{
	background:var(--stone-dark) center/cover no-repeat; min-height:360px; display:flex; align-items:flex-end;
	position:relative;
}
.tmt-tour-hero::before{ content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(21,48,61,.05),rgba(21,48,61,.75)); }
.tmt-tour-hero-inner{ position:relative; padding:60px 24px 34px; color:var(--white); width:100%; }
.tmt-tour-hero h1{ color:var(--white); font-size:clamp(28px,4vw,44px); max-width:820px; }

.tmt-tour-facts{ display:flex; gap:26px; flex-wrap:wrap; margin-top:16px; font-family:var(--font-mono); font-size:13px; }
.tmt-tour-facts span{ background:rgba(255,255,255,.12); padding:6px 12px; border-radius:var(--radius); }

.tmt-tour-layout{ display:grid; grid-template-columns:1fr 340px; gap:50px; padding:56px 0; align-items:start; }
@media (max-width:900px){ .tmt-tour-layout{ grid-template-columns:1fr; } }

/* Day panels — the signature element: itinerary as a bound sastra
   (palm-leaf manuscript) strip — a cord-hole down the left edge and
   a horizontal leaf-rib texture, referencing how these day-plans were
   traditionally kept: strung together, one leaf per entry. */
.tmt-day{
	position:relative; background:var(--paper); border:1px solid var(--stone-dark); border-radius:4px;
	padding:26px 30px 24px 74px; margin-bottom:20px;
	background-image:repeating-linear-gradient(180deg, transparent 0 27px, rgba(154,161,144,.35) 27px 28px);
}
.tmt-day::before{
	/* the binding cord */
	content:""; position:absolute; left:38px; top:14px; bottom:14px; width:1px;
	background:repeating-linear-gradient(180deg, var(--stone-dark) 0 5px, transparent 5px 10px);
}
.tmt-day-num{
	position:absolute; left:16px; top:24px; width:44px; height:44px; border-radius:50%;
	background:var(--jungle); color:var(--gilt-light); display:flex; align-items:center; justify-content:center;
	font-family:var(--font-mono); font-size:15px; font-weight:500; line-height:1; z-index:1;
	box-shadow:0 0 0 3px var(--paper);
}
.tmt-day-num::after{ content:none; }
.tmt-day h3{ font-size:20px; margin-bottom:12px; font-style:italic; }
.tmt-day-slot{ margin-bottom:10px; }
.tmt-day-slot .tmt-slot-label{
	font-family:var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.1em;
	color:var(--brick); display:block; margin-bottom:3px;
}
.tmt-day-night{ font-size:13px; color:#5f665c; margin-top:10px; font-family:var(--font-mono); }

/* Booking sidebar */
.tmt-booking-box{
	background:var(--jungle); color:var(--white); padding:26px 24px; border-radius:var(--radius);
	position:sticky; top:96px;
}
.tmt-booking-box .tmt-price{ font-family:var(--font-display); font-size:32px; color:var(--gilt-light); }
.tmt-booking-box label{ display:block; font-size:12px; text-transform:uppercase; letter-spacing:.06em; margin:14px 0 5px; color:#cdd0c2; }
.tmt-booking-box input, .tmt-booking-box textarea{
	width:100%; padding:10px 12px; border:1px solid #234a5c; background:var(--jungle-2); color:var(--white);
	border-radius:var(--radius); font-family:var(--font-body);
}
.tmt-booking-box button{ margin-top:18px; width:100%; }
.tmt-booking-msg{ margin-top:12px; font-size:13px; }
.tmt-booking-msg.success{ color:#a9d8b0; }
.tmt-booking-msg.error{ color:#e2a08a; }
.tmt-guide-card{ display:flex; gap:12px; align-items:center; margin-bottom:16px; padding-bottom:16px; border-bottom:1px solid #234a5c; }
.tmt-guide-card img{ width:44px; height:44px; border-radius:50%; object-fit:cover; }
.tmt-guide-card .tmt-guide-name{ font-weight:600; }
.tmt-guide-card .tmt-guide-tag{ font-size:12px; color:#cdd0c2; }

/* ===================================================================
   FOOTER
   =================================================================== */
.tmt-site-footer{ background:var(--jungle); color:#cdd0c2; padding:50px 24px 24px; margin-top:40px; }
.tmt-site-footer a{ color:#e8e2d4; text-decoration:none; }
.tmt-footer-bottom{ margin-top:30px; padding-top:18px; border-top:1px solid #1f3f4e; font-size:12px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; }

/* ===================================================================
   TRUST / STATS BAND
   =================================================================== */
.tmt-trust{ background:var(--paper); border-top:1px solid var(--stone-dark); border-bottom:1px solid var(--stone-dark); padding:44px 0; }
.tmt-trust-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:26px; }
.tmt-trust-item{ text-align:left; border-left:2px solid var(--gilt); padding-left:16px; }
.tmt-trust-num{ display:block; font-family:var(--font-display); font-size:34px; font-weight:600; color:var(--brick); }
.tmt-trust-label{ display:block; font-size:14px; color:#333d34; margin-top:4px; max-width:220px; }

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.tmt-testimonials{ padding:60px 0; }
.tmt-testimonial-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:22px; margin-top:30px; }
.tmt-testimonial{
	margin:0; background:var(--paper); border:1px solid var(--stone-dark); border-top:3px solid var(--gilt);
	padding:22px 24px; border-radius:var(--radius);
}
.tmt-testimonial p{ font-family:var(--font-display); font-size:17px; font-style:italic; margin:0 0 14px; color:var(--ink); }
.tmt-testimonial footer{ font-family:var(--font-mono); font-size:12px; letter-spacing:.04em; color:#5f665c; }

/* ===================================================================
   CTA BAND
   =================================================================== */
.tmt-cta-band{ background:var(--jungle); color:var(--white); padding:50px 0; }
.tmt-cta-band-inner{ display:flex; justify-content:space-between; align-items:center; gap:24px; flex-wrap:wrap; }
.tmt-cta-band h2{ color:var(--white); font-size:26px; margin-bottom:6px; }
.tmt-cta-band p{ color:#cdd0c2; margin:0; }

/* ===================================================================
   ABOUT / TRUST INTRO — layered photo collage + stats
   =================================================================== */
.tmt-about{ padding:60px 0; }
.tmt-about-grid{ display:grid; grid-template-columns:1fr 1.1fr; gap:50px; align-items:center; }
@media (max-width:820px){ .tmt-about-grid{ grid-template-columns:1fr; } }
.tmt-about-collage{ position:relative; aspect-ratio:1/1; max-width:420px; }
.tmt-collage-photo{
	position:absolute; background-size:cover; background-position:center; border-radius:46% 54% 58% 42% / 48% 42% 58% 52%;
	box-shadow:0 16px 30px rgba(21,48,61,.2);
}
.tmt-collage-back{ inset:0 18% 18% 0; background-color:var(--stone-dark); }
.tmt-collage-front{ inset:22% 0 0 22%; border:5px solid var(--white); background-color:var(--gilt); }
.tmt-collage-badge{
	position:absolute; left:-10px; bottom:6%; background:var(--jungle); color:var(--white);
	width:96px; height:96px; border-radius:50%; display:flex; flex-direction:column; align-items:center; justify-content:center;
	box-shadow:0 10px 20px rgba(21,48,61,.35);
}
.tmt-collage-badge strong{ font-family:var(--font-display); font-size:22px; color:var(--gilt-light); line-height:1; }
.tmt-collage-badge span{ font-size:10px; text-align:center; padding:0 10px; margin-top:3px; color:var(--stone); }

.tmt-about-stats{ display:flex; gap:30px; margin-top:22px; flex-wrap:wrap; }
.tmt-about-stats div{ display:flex; flex-direction:column; }
.tmt-about-stats strong{ font-family:var(--font-display); font-size:28px; color:var(--brick); }
.tmt-about-stats span{ font-size:12px; color:#5f665c; text-transform:uppercase; letter-spacing:.05em; }

/* ===================================================================
   FEATURE STRIP
   =================================================================== */
.tmt-features{ background:var(--paper); border-top:1px solid var(--stone-dark); border-bottom:1px solid var(--stone-dark); padding:44px 0; }
.tmt-features-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:30px; }
.tmt-feature{ text-align:left; }
.tmt-feature-icon{
	display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:50%;
	background:var(--jungle); color:var(--gilt-light); margin-bottom:12px; flex-shrink:0; overflow:hidden;
}
.tmt-feature-icon svg{ width:18px !important; height:18px !important; max-width:18px !important; max-height:18px !important; display:block; }
.tmt-feature-icon img{ width:100% !important; height:100% !important; max-width:40px !important; max-height:40px !important; object-fit:cover; border-radius:50%; display:block; }
.tmt-feature strong{ display:block; font-family:var(--font-display); font-size:17px; margin-bottom:4px; }
.tmt-feature p{ font-size:13px; color:#5f665c; margin:0; }

/* ===================================================================
   DESTINATION CIRCLES
   =================================================================== */
.tmt-destinations{ padding:54px 0; }
.tmt-destination-row{ display:flex; gap:30px; flex-wrap:wrap; margin-top:26px; }
.tmt-destination{ display:flex; flex-direction:column; align-items:center; text-align:center; text-decoration:none; color:var(--ink); width:140px; }
.tmt-destination-circle{
	width:110px; height:110px; border-radius:50%; background:var(--stone-dark) center/cover no-repeat;
	display:flex; align-items:center; justify-content:center; color:var(--white); margin-bottom:10px;
	border:3px solid var(--paper); box-shadow:0 8px 18px rgba(21,48,61,.18);
}
.tmt-destination-circle svg{ width:28px !important; height:28px !important; max-width:28px !important; max-height:28px !important; display:block; }
.tmt-destination strong{ font-family:var(--font-display); font-size:16px; }
.tmt-destination-sub{ font-size:11px; color:#5f665c; margin-top:2px; }

/* ===================================================================
   VIDEO CTA
   =================================================================== */
.tmt-video-cta{ background:var(--jungle-2) center/cover no-repeat; position:relative; }
.tmt-video-overlay{ background:linear-gradient(180deg,rgba(21,48,61,.55),rgba(21,48,61,.85)); padding:90px 0; }
.tmt-video-inner{ text-align:center; display:flex; flex-direction:column; align-items:center; gap:14px; }
.tmt-video-inner h2{ color:var(--white); font-size:clamp(24px,4vw,38px); max-width:600px; }
.tmt-play-btn{
	width:68px; height:68px; border-radius:50%; border:2px solid var(--gilt-light); color:var(--gilt-light);
	display:flex; align-items:center; justify-content:center; text-decoration:none;
}
.tmt-play-btn svg{ width:28px !important; height:28px !important; max-width:28px !important; max-height:28px !important; display:block; }
.tmt-play-btn-static{ cursor:default; opacity:.8; }

/* ===================================================================
   BLOG / NEWS
   =================================================================== */
.tmt-blog{ padding:60px 0; }
.tmt-blog-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:22px; margin-top:26px; }
.tmt-blog-card{ text-decoration:none; color:var(--ink); background:var(--paper); border:1px solid var(--stone-dark); border-radius:var(--radius); overflow:hidden; }
.tmt-blog-card .tmt-thumb{ aspect-ratio:16/9; background-color:var(--stone-dark); background-size:cover; background-position:center; }
.tmt-blog-card-body{ padding:14px 16px 18px; }
.tmt-blog-date{ font-family:var(--font-mono); font-size:11px; color:var(--brick); text-transform:uppercase; letter-spacing:.05em; }
.tmt-blog-card h3{ font-size:16px; margin:6px 0 0; }
.tmt-blog-empty{ margin-top:22px; padding:34px; text-align:center; background:var(--paper); border:1px dashed var(--stone-dark); border-radius:var(--radius); }
.tmt-blog-empty p{ color:#5f665c; margin-bottom:14px; }

/* ===================================================================
   OFFERS — angled-photo cards with a torn-edge silhouette
   =================================================================== */
.tmt-offers-head{ padding:50px 0 6px; text-align:center; }
.tmt-script{
	font-family:var(--font-script); font-size:26px; color:var(--gilt); display:block; line-height:1;
	margin-bottom:2px;
}
.tmt-offers-head h2{ font-size:32px; }

.tmt-offers-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:22px; padding:24px 0 50px; }

.tmt-offer-card{
	position:relative; display:flex; align-items:center; gap:16px; padding:26px 22px 34px;
	background:var(--paper); overflow:hidden; min-height:220px;
	clip-path:polygon(0 0,100% 0,100% 92%,96% 94%,91% 91%,86% 95%,81% 92%,76% 96%,71% 92%,66% 95%,
		61% 91%,56% 95%,51% 92%,46% 96%,41% 92%,36% 95%,31% 91%,26% 95%,21% 92%,16% 96%,11% 91%,6% 95%,0 92%);
}
.tmt-offer-0{ background:var(--paper); }
.tmt-offer-1{ background:#d3d6c4; }
.tmt-offer-2{ background:#c9d0c6; }

.tmt-offer-text{ flex:1; min-width:0; z-index:1; }
.tmt-offer-text h3{ font-size:19px; margin:2px 0 8px; }
.tmt-offer-text p{ font-size:13px; color:#52584a; margin:0 0 12px; }
.tmt-offer-link{ font-weight:700; color:var(--brick); text-decoration:none; font-size:14px; }
.tmt-offer-link:hover{ text-decoration:underline; }

.tmt-offer-photo{
	position:relative; width:44%; aspect-ratio:4/5; flex-shrink:0; border-radius:var(--radius);
	background-color:var(--stone-dark); background-size:cover; background-position:center;
	box-shadow:0 10px 22px rgba(21,48,61,.18);
}
.tmt-offer-badge{
	position:absolute; top:-10px; right:-10px; background:var(--brick); color:var(--white);
	width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center;
	flex-direction:column; font-family:var(--font-mono); font-size:11px; font-weight:700; line-height:1.2;
	text-align:center; box-shadow:0 4px 10px rgba(0,0,0,.25);
}
.tmt-offer-badge-standalone{ position:static; margin-top:10px; }

/* ===================================================================
   RESPONSIVE HEADER
   =================================================================== */
@media (max-width:760px){
	.tmt-header-inner{ justify-content:space-between; padding:10px 20px; }
	.tmt-nav{ order:3; width:100%; justify-content:flex-start; overflow-x:auto; }
	.tmt-nav ul{ gap:18px; }
	.tmt-logo{ height:34px; }
	.tmt-logo img, .tmt-logo .custom-logo{ max-width:120px !important; max-height:34px !important; }
}
