/* ===================================================================
   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; list-style:none; margin:0; padding:0; gap:28px; }
.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-color:var(--jungle); background-size:cover; background-position:center;
	color:var(--white); padding:90px 24px 70px; overflow:hidden;
}
.tmt-hero-inner, .tmt-search-bar{ position:relative; z-index:1; }
.tmt-hero-inner{ max-width:720px; }
.tmt-hero h1{ font-size:clamp(34px,5vw,56px); color:var(--white); text-shadow:0 2px 16px rgba(0,0,0,.55); }
.tmt-hero p{ font-size:18px; color:rgba(255,255,255,.92); max-width:620px; text-shadow:0 1px 10px rgba(0,0,0,.5); }
.tmt-hero .tmt-cta{ margin-top:26px; }

/* Search bar */
.tmt-search-bar{
	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; }

/* ===================================================================
   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 (grid / listing)
   =================================================================== */
.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; box-shadow:0 8px 18px rgba(21,48,61,.12);
}
.tmt-tour-card:hover{ transform:translateY(-3px); box-shadow:0 12px 24px rgba(21,48,61,.2); }
.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; border-top:3px solid var(--gilt); }
.tmt-tour-card h3{ font-size:19px; font-style:italic; margin-bottom:8px; line-height:1.25; }
.tmt-meta-row{ font-family:var(--font-script); font-size:15px; color:var(--gilt); display:block; margin-bottom:8px; line-height:1; }
.tmt-meta-row span{ display:inline; }
.tmt-meta-row span + span::before{ content:" · "; }
.tmt-tour-card .tmt-price{ margin-top:auto; font-weight:700; color:var(--brick); font-size:18px; }
.tmt-tour-cta{
	font-family:var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.06em;
	color:var(--brick); font-weight:700; margin-top:auto; padding-top:4px;
}

/* ===================================================================
   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 — bound palm-leaf manuscript strip */
.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{
	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 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; }

/* ===================================================================
   OFFERS — angled-photo cards with torn-edge silhouette
   =================================================================== */
.tmt-offers-head{ padding:50px 0 6px; text-align:center; }
.tmt-script,.tmt-offers-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-intro{ max-width:680px; margin:16px auto 0; font-size:15px; line-height:1.7; color:#4a4a3e; }

.tmt-offer-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);
}

/* ===================================================================
   ABOUT / TRUST INTRO
   =================================================================== */
.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:112px; height:112px; 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:9px; text-align:center; padding:0 20px; margin-top:4px; color:var(--stone); line-height:1.3; }

.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; }

/* ===================================================================
   DESTINATIONS
   =================================================================== */
.tmt-destinations{ padding:54px 0; }
.tmt-destination-row{ scrollbar-width:thin; }

/* ===================================================================
   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; background:transparent; cursor:pointer;
}
.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; }

/* Video lightbox */
.tmt-video-modal{ position:fixed; inset:0; z-index:200; display:flex; align-items:center; justify-content:center; padding:24px; }
.tmt-video-modal[hidden]{ display:none; }
.tmt-video-modal-backdrop{ position:absolute; inset:0; background:rgba(10,18,15,.88); }
.tmt-video-modal-inner{ position:relative; width:100%; max-width:900px; aspect-ratio:16/9; background:#000; }
.tmt-video-modal-inner iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.tmt-video-modal-x{
	position:absolute; top:-42px; right:0; background:transparent; border:none; color:var(--white);
	font-size:32px; line-height:1; cursor:pointer; padding:4px 10px;
}

/* ===================================================================
   WHY BOOK WITH US
   =================================================================== */
.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:flex; flex-wrap:nowrap; gap:20px; overflow-x:auto; scroll-behavior:smooth;
	scrollbar-width:none; -ms-overflow-style:none; padding:2px;
}
.tmt-testimonial-grid .tmt-testimonial-card{ flex:0 0 300px; width:300px; }

.tmt-testimonial-layout{ display:flex; gap:30px; align-items:stretch; margin-top:30px; }
@media (max-width:820px){ .tmt-testimonial-layout{ flex-direction:column; } }
.tmt-testimonial-summary{
	flex:0 0 220px; background:var(--white); border:1px solid var(--stone-dark); border-radius:12px;
	padding:26px 20px; text-align:center; display:flex; flex-direction:column; align-items:center;
	box-shadow:0 6px 16px rgba(21,48,61,.1);
}
.tmt-testimonial-summary-logo{
	width:64px; height:64px; border-radius:14px; background:var(--jungle) center/cover no-repeat;
	color:var(--gilt-light); display:flex; align-items:center; justify-content:center; margin-bottom:12px;
}
.tmt-testimonial-summary-logo svg{ width:28px !important; height:28px !important; }
.tmt-testimonial-summary strong{ font-family:var(--font-display); font-size:16px; }
.tmt-testimonial-summary-count{ font-size:13px; color:#5f665c; }
.tmt-testimonial-write-btn{
	display:block; margin-top:16px; padding:10px 16px; border:1px solid var(--stone-dark); border-radius:var(--radius);
	font-size:13px; font-weight:600; color:var(--ink); text-decoration:none; width:100%;
}
.tmt-testimonial-write-btn:hover{ border-color:var(--gilt); }

.tmt-testimonial-text.is-truncated{
	display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden;
}
.tmt-testimonial-readmore{
	background:none; border:none; padding:0; margin-top:4px; font-size:12px; font-weight:700;
	color:var(--brick); cursor:pointer; font-family:var(--font-mono);
}

/* ===================================================================
   CONTACT FORM
   =================================================================== */
.tmt-contact-form-section{ padding:70px 0; background:var(--paper); border-top:1px solid var(--stone-dark); }
.tmt-contact-form-section h2{ margin-bottom:14px; }
.tmt-contact-form-sub{ font-size:15px; line-height:1.6; color:#4a4a3e; margin-bottom:28px; }
.tmt-contact-form{ text-align:left; }
.tmt-contact-form input, .tmt-contact-form textarea{
	width:100%; padding:12px 14px; border:1px solid var(--stone-dark); border-radius:var(--radius);
	font-family:var(--font-body); font-size:14px; background:var(--white); color:var(--ink); margin-bottom:14px;
	transition:border-color .15s ease, box-shadow .15s ease;
}
.tmt-contact-form input:focus, .tmt-contact-form textarea:focus{
	outline:none; border-color:var(--gilt); box-shadow:0 0 0 3px rgba(217,142,43,.18);
}
.tmt-contact-form textarea{ resize:vertical; min-height:100px; }
.tmt-testimonial-form-row{ display:flex; gap:12px; margin-bottom:12px; }
.tmt-testimonial-form-row input{ flex:1; margin-bottom:0; }
@media (max-width:480px){ .tmt-testimonial-form-row{ flex-direction:column; gap:0; } }
.tmt-contact-form .tmt-booking-msg{ text-align:center; margin-top:10px; }
.tmt-contact-form .tmt-booking-msg.success{ color:#2f6b3a; }
.tmt-contact-form .tmt-booking-msg.error{ color:#a13d2c; }
.tmt-honeypot{ position:absolute !important; left:-9999px !important; width:1px !important; height:1px !important; opacity:0; pointer-events:none; }
.tmt-cta-pill{ border-radius:999px; width:100%; text-align:center; }

.tmt-contact-layout{ display:flex; gap:40px; align-items:flex-start; flex-wrap:wrap; }
@media (max-width:820px){ .tmt-contact-layout{ flex-direction:column; } }
.tmt-contact-main{ flex:1; max-width:520px; }
.tmt-contact-badges{
	flex:0 0 260px; display:grid; grid-template-columns:repeat(2,1fr); gap:16px;
}
.tmt-badge-card{
	display:flex; align-items:center; justify-content:center; aspect-ratio:1/1; background:var(--white);
	border:1px solid var(--stone-dark); border-radius:12px; box-shadow:0 4px 12px rgba(21,48,61,.1);
	padding:16px; transition:transform .15s ease, box-shadow .15s ease;
}
a.tmt-badge-card:hover{ transform:translateY(-3px); box-shadow:0 8px 18px rgba(21,48,61,.18); }
.tmt-badge-card img{ max-width:100%; max-height:100%; width:auto; height:auto; object-fit:contain; }

.tmt-contact-visitors{ flex:0 0 200px; align-self:flex-start; }
.tmt-flagcounter img{ max-width:100%; }

.tmt-testimonial-card{
	position:relative; background:var(--white); border:1px solid var(--stone-dark); border-radius:12px;
	padding:20px 22px; box-shadow:0 6px 16px rgba(21,48,61,.1);
}
.tmt-testimonial-head{ display:flex; align-items:center; gap:12px; margin-bottom:10px; }
.tmt-testimonial-avatar{
	width:42px; height:42px; border-radius:50%; background:var(--jungle); color:var(--gilt-light);
	display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:600;
	font-size:17px; flex-shrink:0;
}
.tmt-testimonial-who strong{ display:flex; align-items:center; gap:5px; font-size:14.5px; font-weight:700; color:var(--ink); }
.tmt-testimonial-badge{
	display:inline-flex; align-items:center; justify-content:center; width:15px; height:15px; border-radius:50%;
	background:#2f6bd9; color:#fff; font-size:9px; line-height:1;
}
.tmt-testimonial-origin{ display:block; font-size:12px; color:#5f665c; margin-top:1px; }
.tmt-testimonial-stars{ color:var(--gilt); font-size:15px; letter-spacing:2px; margin-bottom:10px; }
.tmt-testimonial-card p{ font-size:14.5px; line-height:1.6; color:var(--ink); margin:0; }

/* ===================================================================
   PRACTICAL INFO — accordion
   =================================================================== */
.tmt-practical{ padding:60px 0; }
.tmt-accordion{ margin-top:26px; max-width:820px; }
.tmt-accordion-item{
	background:var(--paper); border:1px solid var(--stone-dark); border-radius:var(--radius);
	margin-bottom:10px; overflow:hidden;
}
.tmt-accordion-item summary{
	cursor:pointer; padding:16px 20px; font-family:var(--font-display); font-size:17px; font-weight:600;
	list-style:none; display:flex; align-items:center; justify-content:space-between; color:var(--ink);
}
.tmt-accordion-item summary::-webkit-details-marker{ display:none; }
.tmt-accordion-item summary::after{
	content:"+"; font-family:var(--font-mono); font-size:20px; color:var(--gilt); margin-left:12px; flex-shrink:0;
}
.tmt-accordion-item[open] summary::after{ content:"–"; }
.tmt-accordion-item[open] summary{ border-bottom:1px solid var(--stone-dark); }
.tmt-accordion-body{ padding:16px 20px 20px; font-size:14px; line-height:1.65; }
.tmt-accordion-body p{ margin:0 0 10px; }
.tmt-accordion-body p:last-child{ margin-bottom:0; }
.tmt-accordion-body strong{ color:var(--brick); }

/* ===================================================================
   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; }

/* ===================================================================
   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; }

/* ===================================================================
   FOOTER
   =================================================================== */
.tmt-site-footer{ background:var(--jungle); color:#c9c2ae; padding:50px 24px 0; margin-top:40px; }
.tmt-site-footer a{ color:#e8e2d4; text-decoration:none; }
.tmt-footer-grid{ display:grid; grid-template-columns:1.3fr 1fr; gap:40px; padding-bottom:30px; }
@media (max-width:760px){ .tmt-footer-grid{ grid-template-columns:1fr; } }
.tmt-footer-brand{ color:var(--white); font-family:var(--font-display); font-size:20px; margin:0 0 10px; }
.tmt-footer-tagline{ max-width:320px; font-size:14px; line-height:1.6; }
.tmt-footer-icons{ display:flex; gap:12px; margin-top:20px; }
.tmt-footer-icons a{
	width:38px; height:38px; border-radius:50%; border:1px solid #234a5c; display:flex; align-items:center;
	justify-content:center; color:var(--white);
}
.tmt-footer-icons a:hover{ border-color:var(--gilt); color:var(--gilt-light); }
.tmt-footer-icons svg{ width:17px !important; height:17px !important; }
.tmt-footer-heading{
	color:var(--white); font-family:var(--font-mono); font-size:12px; text-transform:uppercase;
	letter-spacing:.08em; margin:0 0 16px;
}
.tmt-footer-links{ display:flex; flex-direction:column; gap:10px; font-size:14px; }
.tmt-footer-links a:hover{ color:var(--gilt-light); }
.tmt-flagcounter img{ max-width:100%; }
.tmt-footer-bottom{
	margin-top:10px; padding:18px 0; border-top:1px solid #1f3f4e; font-size:12px;
	display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px;
	max-width:var(--max-w); margin-left:auto; margin-right:auto;
}

.tmt-contact-fab{
	position:fixed; right:20px; bottom:20px; z-index:100; background:var(--gilt); color:var(--jungle) !important;
	font-weight:700; font-size:14px; padding:12px 18px; border-radius:999px; display:flex; align-items:center;
	gap:8px; box-shadow:0 8px 20px rgba(21,48,61,.35); text-decoration:none !important;
}
.tmt-contact-fab svg{ width:18px !important; height:18px !important; }
.tmt-contact-fab:hover{ background:var(--gilt-light); }
@media (max-width:600px){ .tmt-contact-fab span{ display:none; } }

/* ===================================================================
   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; }
}
